From 13a5aac1081ab6b8a0e45c5a809449e10d09ce87 Mon Sep 17 00:00:00 2001 From: xsx <825657193@qq.com> Date: Wed, 6 Aug 2025 19:24:36 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96:=20=E6=8F=90=E5=8D=87?= =?UTF-8?q?=E6=8B=89=E5=8F=96=E7=A6=BB=E7=BA=BF=E6=B6=88=E6=81=AF=E6=95=88?= =?UTF-8?q?=E7=8E=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- im-uniapp/App.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/im-uniapp/App.vue b/im-uniapp/App.vue index 1d83479..a209caf 100644 --- a/im-uniapp/App.vue +++ b/im-uniapp/App.vue @@ -63,8 +63,8 @@ export default { // 如果正在拉取离线消息,先存入缓存区,等待消息拉取完成再处理,防止消息乱序 this.privateMessagesBuffer.push(msgInfo); } else { - // 插入私聊消息 - this.handlePrivateMessage(msgInfo); + // 插入群聊消息 + this.handleGroupMessage(msgInfo); } } else if (cmd == 5) { // 系统消息 @@ -222,7 +222,6 @@ export default { // 插入消息 this.chatStore.insertMessage(msg, chatInfo); // 播放提示音 - this.chatStore.insertMessage(msg, chatInfo); if (!friend.isDnd && !this.chatStore.loading && !msg.selfSend && msgType.isNormal(msg.type) && msg.status != enums.MESSAGE_STATUS.READED) {