aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/activitypub/send/misc.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/lib/activitypub/send/misc.ts')
-rw-r--r--server/lib/activitypub/send/misc.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/lib/activitypub/send/misc.ts b/server/lib/activitypub/send/misc.ts
index 7a21f0c94..607822d16 100644
--- a/server/lib/activitypub/send/misc.ts
+++ b/server/lib/activitypub/send/misc.ts
@@ -153,8 +153,8 @@ function buildAudience (followerInboxUrls: string[], isPublic = true) {
153 to = [ ACTIVITY_PUB.PUBLIC ] 153 to = [ ACTIVITY_PUB.PUBLIC ]
154 cc = followerInboxUrls 154 cc = followerInboxUrls
155 } else { // Unlisted 155 } else { // Unlisted
156 to = followerInboxUrls 156 to = [ ]
157 cc = [ ACTIVITY_PUB.PUBLIC ] 157 cc = [ ]
158 } 158 }
159 159
160 return { to, cc } 160 return { to, cc }