mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
fix: [MISP auto export] fix module input message
This commit is contained in:
parent
353b290899
commit
a30cc1539d
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ class MISP_Thehive_Auto_Push(AbstractModule):
|
|||
self.last_refresh = time.time()
|
||||
self.redis_logger.info('Tags Auto Push refreshed')
|
||||
|
||||
item_id, tag = message.split(' ', 1)
|
||||
item_id, tag = message.split(';', 1)
|
||||
item = Item(item_id)
|
||||
|
||||
# enabled
|
||||
|
|
Loading…
Reference in a new issue