]> git.mxchange.org Git - friendica.git/commitdiff
Deactivated BCC
authorMichael <heluecht@pirati.ca>
Wed, 24 Oct 2018 21:04:21 +0000 (21:04 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 24 Oct 2018 21:04:21 +0000 (21:04 +0000)
src/Protocol/ActivityPub/Transmitter.php

index 2a40838b911ab0109033a0cd4e55b5cbc2aaa33a..e1da961534dadc9a7b7a503c8c84cb0723742f3e 100644 (file)
@@ -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'];
                                }
                        }
                }