From 5f604e52d82b33677d3ce39f3f546f11d2c912fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B5=D0=BD=D0=B8=D1=81=20=D0=9A=D1=80=D0=B8=D0=B2?= =?UTF-8?q?=D0=BE=D1=87=D0=B5=D0=BD=D0=BA=D0=BE?= Date: Thu, 30 Jul 2026 14:22:46 +0700 Subject: [PATCH] fix: send email text once, then attach docs without caption --- instruct/handlers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/instruct/handlers.py b/instruct/handlers.py index c82d7fc..34d4b23 100644 --- a/instruct/handlers.py +++ b/instruct/handlers.py @@ -447,7 +447,9 @@ async def instruct_router_handler(msg: Message): raw_mail = ad_info.get("raw_mail") if ad_info else None if raw_mail: text = INSTRUCT_EMAIL_AVAILABLE(EMOJI_DIGITS, cn, raw_mail) - # Отправляем обе инструкции + # Отправляем текст один раз + await msg.answer(text, parse_mode="html") + # Затем отправляем обе инструкции for instruct_path, file_name in [ (GMAIL_ANDROID_INSTRUCT_PATH, "Инструкция Android"), (APPLE_INSTRUCT_PATH, "Инструкция Apple"), @@ -456,8 +458,6 @@ async def instruct_router_handler(msg: Message): await msg.bot.send_document( chat_id=msg.chat_id, file=FSInputFile(instruct_path, file_name=file_name), - caption=text, - parse_mode="html" ) else: text = INSTRUCT_EMAIL_UNAVAILABLE(EMOJI_DIGITS, cn)