Skip to content

Commit

Permalink
attempt third fix of missing reactions/attachments
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomGuyJCI committed Oct 9, 2024
1 parent 5a6c10c commit 7c2173a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions orchard/bot/handlers/interactions/commands/reactx.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ async def _reactx(body, _):
continue
if user_id in reaction_users:
ignored_rdzips.append(attachment)
interactor.react(channel_id, message_id, number_reactions[i])
await interactor.react(channel_id, message_id, number_reactions[i])
await interactor.react(channel_id, message_id, "🚫")
result = "Done, now ignoring all rdzips."
if len(ignored_rdzips) > 0:
result = (
"Done, now ignoring the following rdzips:\n```"
"Done, now ignoring the following rdzips:\n```\n"
+ "\n".join(ignored_rdzips)
+ "\n```"
)
Expand Down

0 comments on commit 7c2173a

Please sign in to comment.