fix
This commit is contained in:
parent
67a0f8f068
commit
ec8d410f7c
13
main.py
13
main.py
@ -184,11 +184,14 @@ def _process_message(bot: Bot, m: Message):
|
||||
if r:
|
||||
user.update_from_message(r)
|
||||
except Unauthorized:
|
||||
name = conn.root.users[uid].name
|
||||
del conn.root.users[uid]
|
||||
commit()
|
||||
bot.send_message(MANAGEMENT_CHAT, f'<a href="tg://user?id={uid}">{name}</a> был удален '
|
||||
f'из-за блокировки бота', parse_mode='html')
|
||||
try:
|
||||
name = conn.root.users[uid].name
|
||||
del conn.root.users[uid]
|
||||
commit()
|
||||
bot.send_message(MANAGEMENT_CHAT, f'<a href="tg://user?id={uid}">{name}</a> был удален '
|
||||
f'из-за блокировки бота', parse_mode='html')
|
||||
except Exception:
|
||||
sentry_sdk.capture_exception()
|
||||
except TelegramError:
|
||||
sentry_sdk.capture_exception()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user