Revert "Revert "decrease telegram timeout, add sleep for ratelimit""

This reverts commit 5e371768e3.
master
Egg 2023-05-24 17:49:06 +02:00
parent 19def1ed31
commit e362495437
1 changed files with 3 additions and 3 deletions

View File

@ -14,9 +14,9 @@ class TelegramBot(Bot):
try:
updates = tb.get_updates(offset=seen_tg + 1,
allowed_updates="message",
timeout=15).wait()
timeout=5).wait()
except TypeError:
updates = tb.get_updates(timeout=15).wait()
updates = tb.get_updates(timeout=5).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():
sleep(0.5)
tb.send_message(subscriber_id, text).wait()
sleep(0.5)
except Exception:
logger.error('Error telegramming: ' + user.get_city() + ': '
+ str(report.id), exc_info=True)