From: Michael Date: Sun, 21 Oct 2018 06:10:24 +0000 (+0000) Subject: Bugfix: We hadn't deliverd AP posts to all intended receivers X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1c54c27784f92faf3f4a2276e625ddc80aabfd8c;p=friendica.git Bugfix: We hadn't deliverd AP posts to all intended receivers --- diff --git a/src/Protocol/ActivityPub/Transmitter.php b/src/Protocol/ActivityPub/Transmitter.php index 2291b68e9a..7295408d83 100644 --- a/src/Protocol/ActivityPub/Transmitter.php +++ b/src/Protocol/ActivityPub/Transmitter.php @@ -476,7 +476,7 @@ class Transmitter foreach ($permissions[$element] as $receiver) { if ($receiver == $item_profile['followers']) { - $inboxes = self::fetchTargetInboxesforUser($uid, $personal); + $inboxes = array_merge($inboxes, self::fetchTargetInboxesforUser($uid, $personal)); } else { $profile = APContact::getByURL($receiver, false); if (!empty($profile)) {