Skip to content

Commit da84ebf

Browse files
committed
Fixed blocking users
1 parent 4dc8e54 commit da84ebf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ async def process_modmail(self, message):
179179
description='You have been blocked from using modmail.'
180180
)
181181

182-
if str(message.author.id) in self.blocked_users:
182+
if message.author.id in self.blocked_users:
183183
await message.author.send(embed=blocked_em)
184184
else:
185185
thread = await self.threads.find_or_create(message.author)

0 commit comments

Comments
 (0)