From 2def5e9f0234db62e0e88f706929955ce4d9b5c0 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 27 Sep 2022 15:58:16 +0000 Subject: [PATCH] Issue 11876: Fix local message distribution --- src/Model/Item.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Model/Item.php b/src/Model/Item.php index de8666c98..acd2360ef 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -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; }