when you get crashes bc of your log messages -.
This commit is contained in:
parent
e72d4872c0
commit
e7e230b2f0
|
@ -24,9 +24,12 @@ class TelegramBot(Bot):
|
||||||
if update in [303, 404, 420, 500, 502]:
|
if update in [303, 404, 420, 500, 502]:
|
||||||
return reports
|
return reports
|
||||||
if isinstance(update, int):
|
if isinstance(update, int):
|
||||||
|
try:
|
||||||
logger.error("City " + user.uid +
|
logger.error("City " + user.uid +
|
||||||
": Unknown Telegram error code: " +
|
": Unknown Telegram error code: " +
|
||||||
str(update) + " - " + updates[1])
|
str(update) + " - " + updates[1])
|
||||||
|
except TypeError:
|
||||||
|
logger.error("Unknown Telegram error code: " + str(update))
|
||||||
return reports
|
return reports
|
||||||
user.save_seen_tg(update.update_id)
|
user.save_seen_tg(update.update_id)
|
||||||
if update.message.text.lower() == "/start":
|
if update.message.text.lower() == "/start":
|
||||||
|
|
Loading…
Reference in a new issue