From 55b17b19c98e8e3879243b42a21805b3909e2680 Mon Sep 17 00:00:00 2001 From: Will Murphy Date: Sat, 1 Jan 2022 16:29:11 -0600 Subject: [PATCH] cc to poster in case they aren't in followers yet --- index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 92fc8c4..39ad5c2 100644 --- a/index.js +++ b/index.js @@ -108,7 +108,9 @@ app.on('apex-inbox', async ({ actor, activity, recipient, object }) => { apex.consts.publicAddress ] const share = await apex.buildActivity('Announce', recipient.id, to, { - object: activity.object[0].id + object: activity.object[0].id, + // make sure sender can see it even if they don't follow yet + cc: actor.id }) apex.addToOutbox(recipient, share) break