Silently drop reminder deletion errors, closes #131
This commit is contained in:
parent
835acb8be5
commit
2d91771f59
1 changed files with 4 additions and 1 deletions
|
@ -276,7 +276,10 @@ class RemindmeCog(Scale):
|
|||
inline=False,
|
||||
)
|
||||
)
|
||||
await reminder.delete()
|
||||
try:
|
||||
await reminder.delete()
|
||||
except Exception:
|
||||
pass # Silently drop error
|
||||
|
||||
for row in components:
|
||||
for component in row.components:
|
||||
|
|
Loading…
Add table
Reference in a new issue