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);