From 57c398f537e5f692bd09ca4d6664ca256fb2ffd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B9=98=E9=A3=8E?= Date: Mon, 1 Dec 2025 14:27:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0MessageRecord=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=E4=B8=AD=E7=9A=84=E6=B6=88=E6=81=AF=E8=BF=87=E6=BB=A4?= =?UTF-8?q?=E9=80=BB=E8=BE=91=EF=BC=8C=E4=BB=A5=E5=8C=85=E6=8B=AC=E5=85=B6?= =?UTF-8?q?=E4=BB=96=E6=B6=88=E6=81=AF=E7=B1=BB=E5=9E=8B=EF=BC=88-10001?= =?UTF-8?q?=EF=BC=89=EF=BC=8C=E4=BB=A5=E6=94=B9=E8=BF=9B=E7=B3=BB=E7=BB=9F?= =?UTF-8?q?=E6=B6=88=E6=81=AF=E7=9A=84=E5=A4=84=E7=90=86=E5=B9=B6=E5=A2=9E?= =?UTF-8?q?=E5=BC=BA=E7=94=A8=E6=88=B7=E4=BD=93=E9=AA=8C=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/ChatWindow/components/MessageRecord/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Touchkebao/src/pages/pc/ckbox/weChat/components/ChatWindow/components/MessageRecord/index.tsx b/Touchkebao/src/pages/pc/ckbox/weChat/components/ChatWindow/components/MessageRecord/index.tsx index 23ea4a23f..c6a78cb80 100644 --- a/Touchkebao/src/pages/pc/ckbox/weChat/components/ChatWindow/components/MessageRecord/index.tsx +++ b/Touchkebao/src/pages/pc/ckbox/weChat/components/ChatWindow/components/MessageRecord/index.tsx @@ -856,7 +856,7 @@ const MessageRecord: React.FC = ({ contract }) => { {groupMessagesByTime(currentMessages).map((group, groupIndex) => ( {group.messages - .filter(v => [10000].includes(v.msgType)) + .filter(v => [10000, -10001].includes(v.msgType)) .map(msg => { // 解析系统消息,提取纯文本(移除img标签和_wc_custom_link_标签) const parsedText = parseSystemMessage(msg.content); @@ -893,7 +893,7 @@ const MessageRecord: React.FC = ({ contract }) => { })}
{group.time}
{group.messages - .filter(v => ![10000, 570425393, 90000].includes(v.msgType)) + .filter(v => ![10000, 570425393, 90000, -10001].includes(v.msgType)) .map(msg => { return renderMessage(msg); })}