Fix instruct: replace <br> with \n for HTML line breaks

This commit is contained in:
Денис Кривоченко
2026-07-21 17:43:31 +07:00
parent 77cbb1d352
commit 642f2bba6a
2 changed files with 15 additions and 15 deletions
+3 -3
View File
@@ -147,9 +147,9 @@ async def main_menu(msg: Message):
set_state(user_id, "INSTRUCT_MODE")
log_menu_stats(user_id, "Инструкции", "Вход")
await msg.answer(
"📋 <b>Выберите инструкцию:</b><br><br>"
"1⃣ — 🖥 Trueconf<br>"
"2⃣ — 📧 Почта<br><br>"
"📋 <b>Выберите инструкцию:</b>\n\n"
"1⃣ — 🖥 Trueconf\n"
"2⃣ — 📧 Почта\n\n"
"<i>0⃣ — В главное меню</i>",
parse_mode="html"
)