From: Michael Date: Sun, 21 Oct 2018 20:49:50 +0000 (+0000) Subject: We now send the previous followers collection as well X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=bb3f07b0b7196991b0ef99aafdea76f50b06ec19;p=friendica.git We now send the previous followers collection as well --- diff --git a/src/Protocol/ActivityPub/Transmitter.php b/src/Protocol/ActivityPub/Transmitter.php index 7295408d83..a0d92a571d 100644 --- a/src/Protocol/ActivityPub/Transmitter.php +++ b/src/Protocol/ActivityPub/Transmitter.php @@ -289,7 +289,7 @@ class Transmitter foreach ($activity[$element] as $receiver) { if ($receiver == $profile['followers'] && !empty($item_profile['followers'])) { - $receiver = $item_profile['followers']; + $permissions[$element][] = $item_profile['followers']; } if (!in_array($receiver, $exclude)) { $permissions[$element][] = $receiver;