Skip to content
This repository has been archived by the owner on Jan 1, 2021. It is now read-only.

Commit

Permalink
fix logic error in getting reaction messages
Browse files Browse the repository at this point in the history
  • Loading branch information
jgayfer committed Oct 31, 2017
1 parent 6239f2c commit 6c9fcb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ async def on_raw_reaction_add(self, emoji, message_id, channel_id, user_id):
return
try:
message = await channel.get_message(message_id)
except e:
except:
return

guild = channel.guild
Expand Down

0 comments on commit 6c9fcb5

Please sign in to comment.