]> git.mxchange.org Git - friendica.git/commitdiff
Removed unused fields
authorMichael <heluecht@pirati.ca>
Tue, 5 May 2020 14:10:39 +0000 (14:10 +0000)
committerMichael <heluecht@pirati.ca>
Tue, 5 May 2020 14:10:39 +0000 (14:10 +0000)
src/Protocol/Diaspora.php

index 3cdf21b57ca66ad7c744ee14345bc4e4289ee20e..708f5335a53d5d4525ef3d86bfb662c8eb749108 100644 (file)
@@ -2325,7 +2325,7 @@ class Diaspora
                Logger::info('Participation stored', ['id' => $message_id, 'guid' => $guid, 'parent_guid' => $parent_guid, 'author' => $author]);
 
                // Send all existing comments and likes to the requesting server
-               $comments = Item::select(['id', 'uri-id', 'parent', 'verb', 'self'], ['parent' => $parent_item['id']]);
+               $comments = Item::select(['id', 'uri-id', 'parent'], ['parent' => $parent_item['id']]);
                while ($comment = Item::fetch($comments)) {
                        if ($comment['id'] == $comment['parent']) {
                                continue;