Skip to content

Commit

Permalink
fix: 修复匿名群聊相关bug
Browse files Browse the repository at this point in the history
  • Loading branch information
imalasong committed Jul 1, 2023
1 parent 9eaa352 commit e9b7e0d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/components/chat/ChatBox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,9 @@ export default {
if (this.loadAll) {
return this.$message.success("已到达顶部");
}
if(this.chat===null || this.chat.type===undefined){
return;
}
let param = {}
if (this.chat.type == 'GROUP') {
param.groupId = this.chat.targetId;
Expand Down

0 comments on commit e9b7e0d

Please sign in to comment.