Merge pull request #10657 from annando/self-unfollow

Don't offer to unfollow yourself
This commit is contained in:
Hypolite Petovan
2021-09-02 20:04:16 -04:00
committed by GitHub

View File

@@ -75,7 +75,7 @@ class VCard
$pending = $pcontact['pending'] ?? false; $pending = $pcontact['pending'] ?? false;
} }
if (in_array($contact['network'], Protocol::NATIVE_SUPPORT)) { if (!$contact['self'] && in_array($contact['network'], Protocol::NATIVE_SUPPORT)) {
if (in_array($rel, [Contact::SHARING, Contact::FRIEND])) { if (in_array($rel, [Contact::SHARING, Contact::FRIEND])) {
$unfollow_link = 'unfollow?url=' . urlencode($contact['url']) . '&auto=1'; $unfollow_link = 'unfollow?url=' . urlencode($contact['url']) . '&auto=1';
} elseif (!$pending) { } elseif (!$pending) {