From 9f49dd3e966e42c4c8bceccb23dbaab2e8e88c95 Mon Sep 17 00:00:00 2001 From: Denis Krivochenko Date: Mon, 17 Aug 2026 16:04:54 +0700 Subject: [PATCH] =?UTF-8?q?photo=5Fbot:=20=D1=82=D0=B5=D1=81=D1=82-=D0=BC?= =?UTF-8?q?=D0=BE=D0=B4=20=E2=80=94=20=D1=82=D0=B5=D0=BA=D1=81=D1=82=20?= =?UTF-8?q?=D0=BF=D0=BE=D0=B8=D1=81=D0=BA=D0=B0=20=D0=BB=D0=B8=D1=86=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- photo_bot/handlers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/photo_bot/handlers.py b/photo_bot/handlers.py index 50e193b..b5c2498 100644 --- a/photo_bot/handlers.py +++ b/photo_bot/handlers.py @@ -314,7 +314,8 @@ async def photo_module_handler(msg: Message): file_id = getattr(msg.content, "file_id", None) raw_bytes = None - await msg.answer(PHOTO_PROCESSING_FACE_TEXT, parse_mode="html") + face_text = PHOTO_TEST_RECEIVING_TEXT if config.PHOTO_TEST_MODE else PHOTO_PROCESSING_FACE_TEXT + await msg.answer(face_text, parse_mode="html") try: downloaded_file = await states.tc_bot.download_file_by_id(file_id)