From 70e59610694edda8dca29e973372e2820e8c393d Mon Sep 17 00:00:00 2001 From: Kirill Kirilenko Date: Mon, 24 Nov 2025 15:55:28 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B4=D0=B0=D0=BB=D0=B5=D0=BD=D1=8B=20?= =?UTF-8?q?=D0=BB=D0=B8=D1=88=D0=BD=D0=B8=D0=B5=20=D1=81=D0=BE=D0=BE=D0=B1?= =?UTF-8?q?=D1=89=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=BF=D1=80=D0=B8=20=D0=BF?= =?UTF-8?q?=D1=80=D0=B8=D1=81=D0=BE=D0=B5=D0=B4=D0=B8=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B8/=D0=B8=D1=81=D0=BA=D0=BB=D1=8E=D1=87=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B8=20=D1=83=D1=87=D0=B0=D1=81=D1=82=D0=BD=D0=B8=D0=BA?= =?UTF-8?q?=D0=B0=20=D0=B2=20=D0=BD=D0=B5=D0=B0=D0=BA=D1=82=D0=B8=D0=B2?= =?UTF-8?q?=D0=BD=D0=BE=D0=BC=20=D1=87=D0=B0=D1=82=D0=B5.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tg/handlers/action.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tg/handlers/action.py b/tg/handlers/action.py index c747bb0..2dddc09 100644 --- a/tg/handlers/action.py +++ b/tg/handlers/action.py @@ -13,7 +13,6 @@ async def user_join_handler(message: Message): chat_id = message.chat.id chat = database.DB.create_chat_if_not_exists(chat_id) if chat['active'] == 0: - await message.answer(MESSAGE_CHAT_NOT_ACTIVE) return for member in message.new_chat_members: @@ -30,7 +29,6 @@ async def user_join_handler(message: Message): chat_id = message.chat.id chat = database.DB.create_chat_if_not_exists(chat_id) if chat['active'] == 0: - await message.answer(MESSAGE_CHAT_NOT_ACTIVE) return member = message.left_chat_member