diff --git a/active_bots/telegrambot.py b/active_bots/telegrambot.py index f9a3f94..7e5fc31 100644 --- a/active_bots/telegrambot.py +++ b/active_bots/telegrambot.py @@ -14,9 +14,9 @@ class TelegramBot(Bot): try: updates = tb.get_updates(offset=seen_tg + 1, allowed_updates="message", - timeout=5).wait() + timeout=15).wait() except TypeError: - updates = tb.get_updates(timeout=5).wait() + updates = tb.get_updates(timeout=15).wait() reports = [] if updates == None: return reports @@ -87,8 +87,8 @@ class TelegramBot(Bot): text = text[:4096 - 2] + " \N{Horizontal ellipsis}" try: for subscriber_id in user.get_telegram_subscribers(): - tb.send_message(subscriber_id, text).wait() sleep(0.5) + tb.send_message(subscriber_id, text).wait() except Exception: logger.error('Error telegramming: ' + user.get_city() + ': ' + str(report.id), exc_info=True)