aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--server/lib/activitypub/send/misc.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/activitypub/send/misc.ts b/server/lib/activitypub/send/misc.ts
index 607822d16..b20fcf124 100644
--- a/server/lib/activitypub/send/misc.ts
+++ b/server/lib/activitypub/send/misc.ts
@@ -126,7 +126,7 @@ function getOriginVideoCommentAudience (
126 126
127function getObjectFollowersAudience (actorsInvolvedInObject: ActorModel[]) { 127function getObjectFollowersAudience (actorsInvolvedInObject: ActorModel[]) {
128 return { 128 return {
129 to: actorsInvolvedInObject.map(a => a.followersUrl), 129 to: [ ACTIVITY_PUB.PUBLIC ].concat(actorsInvolvedInObject.map(a => a.followersUrl)),
130 cc: [] 130 cc: []
131 } 131 }
132} 132}