diff --git a/src/Protocol/ActivityPub/Transmitter.php b/src/Protocol/ActivityPub/Transmitter.php index 018fdc7b0f..f6fd1ad132 100644 --- a/src/Protocol/ActivityPub/Transmitter.php +++ b/src/Protocol/ActivityPub/Transmitter.php @@ -561,6 +561,9 @@ class Transmitter if (!empty($profile)) { if ($term['type'] == Tag::EXCLUSIVE_MENTION) { $exclusive = true; + if (!empty($profile['followers']) && ($profile['type'] == 'Group')) { + $data['cc'][] = $profile['followers']; + } } $data['to'][] = $profile['url']; }