Skip to content

Commit

Permalink
Fix: properly handle cc followers
Browse files Browse the repository at this point in the history
  • Loading branch information
trwnh authored Jan 15, 2024
1 parent 8b0fdfc commit 9c91839
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/core/activitypub/ApAudienceService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export class ApAudienceService {
};
}

if (toGroups.followers.length > 0) {
if (toGroups.followers.length > 0 or ccGroups.followers.length > 0) {
return {
visibility: 'followers',
mentionedUsers,
Expand Down

0 comments on commit 9c91839

Please sign in to comment.