Feeds display: Add "*" after a space in order to have flags

This commit is contained in:
Gregory Soutade 2023-01-28 09:35:48 +01:00
parent 2b19a009e8
commit 3a8c667fdc
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ class IWLADisplayFeeds(IPlugin):
super_hit.get('dns_name_replaced', False):
address = '%s [%s]' % (address, super_hit['remote_ip'])
if super_hit['feed_parser'] == IWLAPostAnalysisFeeds.MERGED_FEED_PARSER:
address += '*'
address += ' *'
pages = super_hit['not_viewed_pages'][0] + super_hit['viewed_pages'][0]
hits = super_hit['not_viewed_hits'][0] + super_hit['viewed_hits'][0]
table.appendRow([address, pages, hits, time.asctime(super_hit['last_access'])])