From 86b0e5913bf9eefaad4ad20ce60ff3e08dc39fb0 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Tue, 11 Feb 2025 16:07:38 -0500 Subject: [PATCH] fix: send `actor` with 1b12 announce, fixes #13072 again --- src/activitypub/feps.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/activitypub/feps.js b/src/activitypub/feps.js index 3c4cf5ef1c..19da36a09c 100644 --- a/src/activitypub/feps.js +++ b/src/activitypub/feps.js @@ -29,6 +29,7 @@ Feps.announce = async function announce(id, activity) { await activitypub.send('cid', cid, followers, { id: `${nconf.get('url')}/post/${encodeURIComponent(id)}#activity/announce/${Date.now()}`, type: 'Announce', + actor: `${nconf.get('url')}/category/${cid}`, to: [`${nconf.get('url')}/category/${cid}/followers`], cc: [actor, activitypub._constants.publicAddress], object: activity,