mirror of
https://github.com/myned/modufur.git
synced 2024-12-24 14:27:27 +00:00
Suppressed AttributeError for dms
This commit is contained in:
parent
16c7985942
commit
b05561e254
1 changed files with 4 additions and 3 deletions
|
@ -53,8 +53,9 @@ def is_nsfw():
|
||||||
|
|
||||||
def del_ctx():
|
def del_ctx():
|
||||||
async def predicate(ctx):
|
async def predicate(ctx):
|
||||||
if ctx.guild.id in u.settings['del_ctx'] and ctx.me.permissions_in(ctx.channel).manage_messages and isinstance(ctx.message.channel, d.TextChannel):
|
with suppress(AttributeError):
|
||||||
with suppress(err.NotFound):
|
if ctx.guild.id in u.settings['del_ctx'] and ctx.me.permissions_in(ctx.channel).manage_messages and isinstance(ctx.message.channel, d.TextChannel):
|
||||||
await ctx.message.delete()
|
with suppress(err.NotFound):
|
||||||
|
await ctx.message.delete()
|
||||||
return True
|
return True
|
||||||
return commands.check(predicate)
|
return commands.check(predicate)
|
||||||
|
|
Loading…
Reference in a new issue