mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-26 07:47:17 +00:00
fix: [retro hunt] fix add tags
This commit is contained in:
parent
3c376c8f06
commit
72afd3ef62
1 changed files with 1 additions and 2 deletions
|
@ -139,8 +139,7 @@ class Retro_Hunt_Module(AbstractModule):
|
|||
# Tags
|
||||
if self.obj.get_type() == 'item':
|
||||
for tag in self.tags:
|
||||
msg = f'{tag};{obj_id}'
|
||||
self.add_message_to_queue(msg, 'Tags')
|
||||
self.add_message_to_queue(obj=self.obj, message=tag, queue='Tags')
|
||||
else:
|
||||
for tag in self.tags:
|
||||
self.obj.add_tag(tag)
|
||||
|
|
Loading…
Reference in a new issue