From 835e84fd7da4ee28ccf5b75b69ed7b7e45091d82 Mon Sep 17 00:00:00 2001 From: liuwei Date: Tue, 1 Apr 2025 15:44:41 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=B9=E6=B6=88=E6=81=AF=E8=BF=9B=E8=A1=8C?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- utils/message_formatter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/message_formatter.py b/utils/message_formatter.py index 1c4d8ec..fb75224 100644 --- a/utils/message_formatter.py +++ b/utils/message_formatter.py @@ -36,7 +36,7 @@ def format_quote_message(xml_content): # 构建格式化的引用消息 if display_name and quoted_content: - formatted_message = f"┌─────────────────────────────────\n│ 引用 {display_name}:{quoted_content}\n└─────────────────────────────────\n{main_content}" + formatted_message = f"{main_content}\n引用 {display_name}:{quoted_content}" return formatted_message return main_content