From 2ebcad0a704b2bcc0902b1633968f6af3e60a1ad Mon Sep 17 00:00:00 2001 From: Zichao Lin Date: Thu, 2 Jul 2026 21:01:05 +0800 Subject: [PATCH] feat: include reply content in send confirmation message --- src/tg_bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tg_bot.py b/src/tg_bot.py index 8e60859..ad93256 100644 --- a/src/tg_bot.py +++ b/src/tg_bot.py @@ -353,7 +353,7 @@ def _handle_message(tg_cfg: TelegramConfig, cfg: Config, msg: dict): if prompt_msg_id: delete_message(tg_cfg, chat_id_str, prompt_msg_id) _do_send_reply(tg_cfg, cfg, chat_id, conv["summary_msg_id"], ctx, text) - send_text(tg_cfg, chat_id_str, "✅ 回复已发送!") + send_text(tg_cfg, chat_id_str, f"✅ 回复已发送: {text}") _conversations.pop(chat_id, None) logger.info(" 回复发送完成")