From aa7e078fbff9d0f538148625f2bfdae628d27987 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Thu, 20 Nov 2025 14:15:43 -0500 Subject: [PATCH] fix: #13654, improper OrderedCollectionPage ID --- src/controllers/activitypub/actors.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/activitypub/actors.js b/src/controllers/activitypub/actors.js index b4f4ddd055..9ae24ed613 100644 --- a/src/controllers/activitypub/actors.js +++ b/src/controllers/activitypub/actors.js @@ -143,7 +143,7 @@ Actors.topic = async function (req, res, next) { method: posts.getPidsFromSet, page, perPage, - url: `${nconf.get('url')}/topic/${req.params.tid}/posts`, + url: `${nconf.get('url')}/topic/${req.params.tid}`, }), db.getSortedSetMembers(`tid:${req.params.tid}:posts`), ]));