Bugfix: flags management for feeds display

This commit is contained in:
Gregory Soutade 2023-06-14 09:21:51 +02:00
parent 9d3ff8b3b7
commit d32b2440ee
1 changed files with 2 additions and 1 deletions

View File

@ -87,7 +87,8 @@ class IWLADisplayFeeds(IPlugin):
last_access = super_hit.get('feed_parser_last_access', None)
if not last_access:
last_access = super_hit['last_access']
table.appendRow([address, pages, hits, time.asctime(last_access)])
row = [address, pages, hits, time.asctime(last_access)]
table.appendRow(row, super_hit['remote_ip'])
page.appendBlock(table)
note = DisplayHTMLRaw(self.iwla, ('<small>*%s</small>' % (self.iwla._(u'Merged feeds parsers'))))
page.appendBlock(note)