]> git.mxchange.org Git - friendica.git/commitdiff
Improve resharer information
authorMichael <heluecht@pirati.ca>
Mon, 28 Sep 2020 14:09:45 +0000 (14:09 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 28 Sep 2020 14:09:45 +0000 (14:09 +0000)
include/conversation.php

index 6f8c28d72510d49ae20dfcb778b217e89767e96e..0ceb9e068ceb7d58f57de918ea557829b2e8094e 100644 (file)
@@ -1007,8 +1007,7 @@ function builtin_activity_puller($item, &$conv_responses) {
 
                        // Skip when the causer of the parent is the same than the author of the announce
                        if ($verb == Activity::ANNOUNCE) {
-                               $parent = Item::selectFirst(['causer-id', 'gravity'], ['uri' => $item['thr-parent']]);
-                               if (($parent['causer-id'] == $item['author-id']) && ($parent['gravity'] == GRAVITY_PARENT)) {
+                               if (Item::exists(['uri' => $item['thr-parent'], 'uid' => $item['uid'], 'causer-id' => $item['author-id'], 'gravity' => GRAVITY_PARENT])) {
                                        continue;
                                }
                        }