mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-11 09:34:26 +02:00
Deactivated BCC
This commit is contained in:
parent
f300c8953a
commit
7f11b2e4e9
1 changed files with 3 additions and 1 deletions
|
@ -350,7 +350,9 @@ class Transmitter
|
||||||
foreach ($receiver_list as $receiver) {
|
foreach ($receiver_list as $receiver) {
|
||||||
$contact = DBA::selectFirst('contact', ['url'], ['id' => $receiver, 'network' => $networks]);
|
$contact = DBA::selectFirst('contact', ['url'], ['id' => $receiver, 'network' => $networks]);
|
||||||
if (DBA::isResult($contact) && !empty($profile = APContact::getByURL($contact['url'], false))) {
|
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'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue