diff --git a/include/conversation.php b/include/conversation.php index 9af80e168b..4afc7c699d 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -742,13 +742,14 @@ function conversation_fetch_comments($thread_items, $pinned) { } if (($row['gravity'] == GRAVITY_PARENT) && !$row['origin'] && ($row['author-id'] == $row['owner-id'])) { - if (!Contact::isSharing($row['author-id'], $row['uid'])) { + if (Contact::isSharing($row['author-id'], $row['uid'])) { + $row['direction'] = ['direction' => 6, 'title' => DI::l10n()->t('You are following %s.', $row['author-name'])]; + } else { if ($row['post-type'] == Item::PT_TAG) { $row['direction'] = ['direction' => 4, 'title' => DI::l10n()->t('Tagged')]; } $parentlines[] = $lineno; - } else { - $row['direction'] = ['direction' => 6, 'title' => DI::l10n()->t('You are following %s.', $row['author-name'])]; + } }