Permission error... fix...?
This commit is contained in:
GaMeNu 2023-10-12 12:09:08 +03:00
parent 30bc6eab2a
commit a1997266c5

View File

@ -215,8 +215,9 @@ class Notificator(commands.Cog):
continue continue
try: try:
await dc_ch.send(embeds=embed_list, view=self.hfc_button_view()) await dc_ch.send(embeds=embed_list, view=self.hfc_button_view())
except discord.errors.Forbidden: except BaseException as e:
self.log.warning(f'Failed to send alert in channel {channel}: No permission') self.log.warning(f'Failed to send alert in channel {channel}:\n'
f'{e}')
@app_commands.command(name='register', @app_commands.command(name='register',