From 7f11b2e4e9b69e85a0d52b171d21214f2a99b57a Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 24 Oct 2018 21:04:21 +0000 Subject: [PATCH] Deactivated BCC --- src/Protocol/ActivityPub/Transmitter.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Protocol/ActivityPub/Transmitter.php b/src/Protocol/ActivityPub/Transmitter.php index 2a40838b91..e1da961534 100644 --- a/src/Protocol/ActivityPub/Transmitter.php +++ b/src/Protocol/ActivityPub/Transmitter.php @@ -350,7 +350,9 @@ class Transmitter foreach ($receiver_list as $receiver) { $contact = DBA::selectFirst('contact', ['url'], ['id' => $receiver, 'network' => $networks]); if (DBA::isResult($contact) && !empty($profile = APContact::getByURL($contact['url'], false))) { - $data['bcc'][] = $profile['url']; + // BCC is currently deactivated, due to Pleroma and Mastodon not reacting like expected + // $data['bcc'][] = $profile['url']; + $data['cc'][] = $profile['url']; } } }