This commit is contained in:
2025-04-22 00:42:21 +02:00
parent 28c64341e1
commit 560a5ac793
2 changed files with 2 additions and 4 deletions

View File

@@ -30,9 +30,6 @@ class ScheduleSyncWorkflow:
streamers = await StreamerConfigRepository().all()
for streamer in streamers:
if streamer.integrations.discord is None:
continue
await workflow.start_activity(
syncronize,
streamer.twitch.id,

View File

@@ -45,7 +45,8 @@ async def delete_telegram_message(chat_id: int, message_id: int):
}
)
result.raise_for_status()
if result.status_code != 200:
return False
except Exception as e:
logger.error("Failed to delete telegram message", exc_info=e)
return False