From 6b9f166cb8391f64c7764a22c1bb03a7c53d0523 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Sun, 9 Mar 2025 11:14:16 -0400 Subject: [PATCH] fix: don't update topic lastposttime by announce this was causing topics to show up as unread eventhough there are no new posts and out of order on /recent --- src/activitypub/inbox.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/activitypub/inbox.js b/src/activitypub/inbox.js index e9b17d92c8..4da0800670 100644 --- a/src/activitypub/inbox.js +++ b/src/activitypub/inbox.js @@ -297,7 +297,6 @@ inbox.announce = async (req) => { } ({ tid } = assertion); - await topics.updateLastPostTime(tid, timestamp); await activitypub.notes.updateLocalRecipients(pid, { to, cc }); await activitypub.notes.syncUserInboxes(tid); }