From 82d7c0ea6d99b87727b045f1efdb8121671c2bfd Mon Sep 17 00:00:00 2001 From: "2569718930@qq.com" <2569718930@qq.com> Date: Wed, 20 May 2026 11:50:32 +0800 Subject: [PATCH] =?UTF-8?q?@=20=E4=BF=AE=E5=A4=8D=20Telegram=20=E5=86=85?= =?UTF-8?q?=E8=81=94=E6=8C=89=E9=92=AE=E7=82=B9=E5=87=BB=E6=97=A0=E5=93=8D?= =?UTF-8?q?=E5=BA=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit infinity_polling allowed_updates 未包含 callback_query,导致确认绑定按钮无响应 @ --- src/bot/orchestrator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bot/orchestrator.py b/src/bot/orchestrator.py index c4f0f7ba..6bb31a11 100644 --- a/src/bot/orchestrator.py +++ b/src/bot/orchestrator.py @@ -103,4 +103,4 @@ def start_bot() -> None: started_count, len(runtime_status.loops), ) - bot.infinity_polling(allowed_updates=["message", "chat_join_request"]) + bot.infinity_polling(allowed_updates=["message", "callback_query", "chat_join_request"])