From a8070e62945eb007100b2f6365fb9edc41c566cd Mon Sep 17 00:00:00 2001 From: MathMan05 Date: Tue, 9 Dec 2025 15:52:12 -0600 Subject: [PATCH] use que instead of dirrectly to improve performance --- src/webpage/direct.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 {