From c08a45a5ccae85b52aa0b70de228e128ded105f3 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Wed, 11 Mar 2026 12:35:42 -0400 Subject: [PATCH] fix: publish id with user outbox, fixes #13478 --- src/controllers/activitypub/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/controllers/activitypub/index.js b/src/controllers/activitypub/index.js index fb57f533c2..1a55109903 100644 --- a/src/controllers/activitypub/index.js +++ b/src/controllers/activitypub/index.js @@ -202,6 +202,7 @@ Controller.getOutbox = async (req, res) => { res.status(200).json({ '@context': 'https://www.w3.org/ns/activitystreams', + id: `${nconf.get('url')}/uid/${uid}/outbox`, type: paginate ? 'OrderedCollectionPage' : 'OrderedCollection', totalItems, ...(prev && { prev }),