From 22eac2e1834cfbd7f45749ab9b0fc3d5ec966ea0 Mon Sep 17 00:00:00 2001 From: MathMan05 Date: Wed, 12 Nov 2025 11:47:30 -0600 Subject: [PATCH] add that to guild logic too --- src/webpage/guild.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/webpage/guild.ts b/src/webpage/guild.ts index 7b11700..421397f 100644 --- a/src/webpage/guild.ts +++ b/src/webpage/guild.ts @@ -1668,10 +1668,10 @@ class Guild extends SnowFlake { if (thing.hasunreads) { build.read_states.push({ channel_id: thing.id, - message_id: thing.lastmessageid, + message_id: thing.trueLastMessageid, read_state_type: 0, }); - thing.lastreadmessageid = thing.lastmessageid; + thing.lastreadmessageid = thing.trueLastMessageid; if (!thing.myhtml) continue; thing.myhtml.classList.remove("cunread"); }