From 9dbea5c6d2cfbd59a8af54ea007b1e2470d76c29 Mon Sep 17 00:00:00 2001 From: MathMan05 Date: Sat, 7 Feb 2026 18:16:09 -0600 Subject: [PATCH] do not let that happen --- src/webpage/guild.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/webpage/guild.ts b/src/webpage/guild.ts index 5d9f9e6..78d47b8 100644 --- a/src/webpage/guild.ts +++ b/src/webpage/guild.ts @@ -1382,6 +1382,7 @@ class Guild extends SnowFlake { } } for (const thread of json.threads) { + if (this.localuser.channelids.has(thread.id)) continue; const temp = new Channel(thread, this); this.localuser.channelids.set(temp.id, temp); temp.resolveparent(this);