From 3c7dd1c0e725a07d11e58b50079e962fef5c62c9 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Wed, 21 Jan 2026 12:12:49 -0700 Subject: [PATCH] fix: Use Markdown for Telegram messages --- app/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.py b/app/app.py index 3349ce5..4ebe0ae 100644 --- a/app/app.py +++ b/app/app.py @@ -255,7 +255,7 @@ async def send_telegram_message(chat_id: str, text: str, markdown: bool = False) return payload = {"chat_id": chat_id, "text": text} if markdown: - payload["parse_mode"] = "MarkdownV2" + payload["parse_mode"] = "Markdown" async with httpx.AsyncClient() as client: try: await client.post(f"{TELEGRAM_API_URL}/sendMessage", json=payload)