feat: have category actor send Announce(Note) on remote replies to topics in a cid

#12434
This commit is contained in:
Julian Lam
2024-03-22 15:28:01 -04:00
parent 4ee8519d0c
commit 04c743eb4a
3 changed files with 25 additions and 9 deletions

View File

@@ -123,7 +123,9 @@ activitypubApi.create.post = enabledCheck(async (caller, { pid }) => {
};
await activitypub.send('uid', caller.uid, Array.from(targets), payloads.create);
await activitypub.send('cid', cid, followers, payloads.announce);
if (followers.length) {
await activitypub.send('cid', cid, followers, payloads.announce);
}
});
activitypubApi.update = {};