Fix AttributeError in Context.delete_messages() (#4876)

delete_messages() isn't an attribute of DMChannels
This commit is contained in:
kingslayer268 2021-03-06 20:51:25 +05:30 committed by GitHub
parent 3782e9c1b9
commit c78ee14617
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -188,7 +188,7 @@ class Context(DPYContext):
else:
try:
await self.channel.delete_messages((query, resp))
except discord.HTTPException:
except (discord.HTTPException, AttributeError):
# In case the bot can't delete other users' messages,
# or is not a bot account
# or channel is a DM