Skip to content

Commit

Permalink
fix: [MISP auto export] fix module input message
Browse files Browse the repository at this point in the history
  • Loading branch information
Terrtia committed May 24, 2023
1 parent 353b290 commit a30cc15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/modules/MISP_Thehive_Auto_Push.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def compute(self, message):
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
Expand Down

0 comments on commit a30cc15

Please sign in to comment.