From 6fbaa6d890a5f921c09f3ccf2c60a03182359356 Mon Sep 17 00:00:00 2001 From: xsx <825657193@qq.com> Date: Sun, 17 Mar 2024 23:56:19 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=E5=A5=BD=E5=8F=8B?= =?UTF-8?q?=E5=A4=B4=E5=83=8F=E4=B8=8D=E6=98=BE=E7=A4=BA=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- im-ui/src/components/chat/ChatPrivateVideo.vue | 2 +- im-uniapp/pages/chat/chat-video.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/im-ui/src/components/chat/ChatPrivateVideo.vue b/im-ui/src/components/chat/ChatPrivateVideo.vue index 445eaf7..74b3d78 100644 --- a/im-ui/src/components/chat/ChatPrivateVideo.vue +++ b/im-ui/src/components/chat/ChatPrivateVideo.vue @@ -139,7 +139,7 @@ type: 'PRIVATE', targetId: this.rtcInfo.friend.id, showName: this.rtcInfo.friend.nickName, - headImage: this.rtcInfo.friend.headImageThumb, + headImage: this.rtcInfo.friend.headImage, }; this.$store.commit("openChat", chat); // 插入消息 diff --git a/im-uniapp/pages/chat/chat-video.vue b/im-uniapp/pages/chat/chat-video.vue index 66a8dc0..ab8b2e7 100644 --- a/im-uniapp/pages/chat/chat-video.vue +++ b/im-uniapp/pages/chat/chat-video.vue @@ -25,7 +25,7 @@ type: 'PRIVATE', targetId: this.friend.id, showName: this.friend.nickName, - headImage: this.friend.headImageThumb, + headImage: this.friend.headImage, }; this.$store.commit("openChat",chat); this.$store.commit("insertMessage", msgInfo);