Skip to content

Commit c0e0c24

Browse files
committed
fix: send group died msg to ROZEN_CHATID as test bot is not in DC_GROUP_CHATID
1 parent cf95934 commit c0e0c24

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bot_logic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ async def _update_groups(context: ContextTypes.DEFAULT_TYPE):
424424
c = session.query(Listable).filter_by(id=chat_db_id).first()
425425
if c:
426426
c.validated = False
427-
await context.bot.send_message(chat_id=DC_GROUP_CHATID, text=f"El grupo {chat_name} murió 💀")
427+
await context.bot.send_message(chat_id=ROZEN_CHATID, text=f"El grupo {chat_name} murió 💀")
428428
else:
429429
logger.info(f"Updating URL for group '{chat_name}'")
430430
with get_session() as session:

0 commit comments

Comments
 (0)