mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-07 11:48:55 -05:00
Fix AttributeError in Context.delete_messages() (#4876)
delete_messages() isn't an attribute of DMChannels
This commit is contained in:
parent
3782e9c1b9
commit
c78ee14617
@ -188,7 +188,7 @@ class Context(DPYContext):
|
|||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
await self.channel.delete_messages((query, resp))
|
await self.channel.delete_messages((query, resp))
|
||||||
except discord.HTTPException:
|
except (discord.HTTPException, AttributeError):
|
||||||
# In case the bot can't delete other users' messages,
|
# In case the bot can't delete other users' messages,
|
||||||
# or is not a bot account
|
# or is not a bot account
|
||||||
# or channel is a DM
|
# or channel is a DM
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user