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)