Issue 8586 again: Don't transmit participations

This commit is contained in:
Michael 2020-05-06 17:30:21 +00:00
parent b9ee46824f
commit 7dea1ff6bd
1 changed files with 2 additions and 2 deletions

View File

@ -2327,9 +2327,9 @@ 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'], ['parent' => $parent_item['id']]);
$comments = Item::select(['id', 'uri-id', 'parent', 'verb'], ['parent' => $parent_item['id']]);
while ($comment = Item::fetch($comments)) {
if ($comment['id'] == $comment['parent']) {
if ($comment['id'] == $comment['parent'] || in_array($comment["verb"], [Activity::FOLLOW, Activity::TAG])) {
continue;
}