diff --git a/src/webpage/direct.ts b/src/webpage/direct.ts index bdf9325..0606997 100644 --- a/src/webpage/direct.ts +++ b/src/webpage/direct.ts @@ -518,13 +518,13 @@ class Group extends Channel { this.users.push(user); this.users = [...new Set(this.users)]; if (this.localuser.channelfocus === this) { - this.localuser.memberListUpdate(); + this.localuser.memberListQue(); } } removeRec(user: User) { this.users = this.users.filter((u) => u !== user); if (this.localuser.channelfocus === this) { - this.localuser.memberListUpdate(); + this.localuser.memberListQue(); } } updateChannel(json: channeljson): void {