when you get crashes bc of your log messages -.

master
b3yond 2018-12-31 15:32:19 +01:00
parent 6a206f1c0f
commit be568b7827
1 changed files with 6 additions and 3 deletions

View File

@ -24,9 +24,12 @@ class TelegramBot(Bot):
if update in [303, 404, 420, 500, 502]:
return reports
if isinstance(update, int):
logger.error("City " + user.uid +
": Unknown Telegram error code: " +
str(update) + " - " + updates[1])
try:
logger.error("City " + user.uid +
": Unknown Telegram error code: " +
str(update) + " - " + updates[1])
except TypeError:
logger.error("Unknown Telegram error code: " + str(update))
return reports
user.save_seen_tg(update.update_id)
if update.message.text.lower() == "/start":