Removed unused fields

This commit is contained in:
Michael 2020-05-05 14:10:39 +00:00
parent 2ee14bf5fe
commit d838dcbd8c
1 changed files with 1 additions and 1 deletions

View 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;