From 464bc27574406c551ee2d2ce55da15c23af31b2d Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Thu, 12 Mar 2026 12:41:39 -0400 Subject: [PATCH] fix: accidental hardcoded cid --- src/controllers/activitypub/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/activitypub/index.js b/src/controllers/activitypub/index.js index 22da06cf6c..086e90933b 100644 --- a/src/controllers/activitypub/index.js +++ b/src/controllers/activitypub/index.js @@ -224,7 +224,7 @@ Controller.getCategoryOutbox = async (req, res) => { count, page, perPage: 20, - url: `${nconf.get('url')}/category/1/outbox`, + url: `${nconf.get('url')}/category/${cid}/outbox`, }); if (collection.orderedItems) { collection.orderedItems = await Promise.all(collection.orderedItems.map(async (pid) => {