From: Michael Date: Tue, 5 May 2020 14:10:39 +0000 (+0000) Subject: Removed unused fields X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d838dcbd8cfdbe154ac49ad6428e659c6b14394e;p=friendica.git Removed unused fields --- diff --git a/src/Protocol/Diaspora.php b/src/Protocol/Diaspora.php index 3cdf21b57c..708f5335a5 100644 --- a/src/Protocol/Diaspora.php +++ b/src/Protocol/Diaspora.php @@ -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;