]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #11940 from annando/issue-11876
authorHypolite Petovan <hypolite@mrpetovan.com>
Tue, 27 Sep 2022 16:07:30 +0000 (12:07 -0400)
committerGitHub <noreply@github.com>
Tue, 27 Sep 2022 16:07:30 +0000 (12:07 -0400)
Issue 11876: Fix local message distribution

src/Model/Item.php

index de8666c98548c3eec3b7d33c517893cca2704427..acd2360ef8550efbad433370b0d8e5b6c1901982 100644 (file)
@@ -1552,14 +1552,16 @@ class Item
 
                $item = array_merge($item, $fields);
 
-               $item['post-reason'] = self::getPostReason($item);
+               if (($uid != 0) && Contact::isSharing(($item['gravity'] == GRAVITY_PARENT) ? $item['owner-id'] : $item['author-id'], $uid)) {
+                       $item['post-reason'] = self::PR_FOLLOWER;
+               }
 
                $is_reshare = ($item['gravity'] == GRAVITY_ACTIVITY) && ($item['verb'] == Activity::ANNOUNCE);
 
                if (($uid != 0) && (($item['gravity'] == GRAVITY_PARENT) || $is_reshare) &&
                        DI::pConfig()->get($uid, 'system', 'accept_only_sharer') == self::COMPLETION_NONE &&
                        !in_array($item['post-reason'], [self::PR_FOLLOWER, self::PR_TAG, self::PR_TO, self::PR_CC])) {
-                       Logger::info('Contact is not a follower, thread will not be stored', ['author' => $item['author-link'], 'uid' => $uid, 'uri-id' => $uri_id]);
+                       Logger::info('Contact is not a follower, thread will not be stored', ['author' => $item['author-link'], 'uid' => $uid, 'uri-id' => $uri_id, 'post-reason' => $item['post-reason']]);
                        return 0;
                }