Skip to content

Commit

Permalink
Fix copy paste mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
raidensakura committed Jun 13, 2023
1 parent 534a3d6 commit 321196d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ def check_manual_blocked(self, author: discord.Member) -> bool:
if str(author.id) not in self.blocked_users:
return True

str_blocked_until = self.blocked_roles[str(author.id)].get("until")
str_blocked_until = self.blocked_users[str(author.id)].get("until")
blocked_until = parser.parse(str_blocked_until)

if blocked_until and blocked_until < discord.utils.utcnow():
Expand Down

0 comments on commit 321196d

Please sign in to comment.