mirror of
https://github.com/friendica/friendica
synced 2024-11-18 19:43:46 +00:00
Fix forum delivery in case of beiong addressed via "@"
This commit is contained in:
parent
4deee0932c
commit
6ee8a966bf
1 changed files with 1 additions and 1 deletions
|
@ -765,7 +765,7 @@ class Transmitter
|
|||
$data['to'][] = $profile['url'];
|
||||
} else {
|
||||
$data['cc'][] = $profile['url'];
|
||||
if (($item['private'] != Item::PRIVATE) && !empty($actor_profile['followers'])&& !$is_forum_thread) {
|
||||
if (($item['private'] != Item::PRIVATE) && !empty($actor_profile['followers']) && (!$exclusive || !$is_forum_thread)) {
|
||||
$data['cc'][] = $actor_profile['followers'];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue