mirror of
https://github.com/friendica/friendica
synced 2024-11-17 22:23:41 +00:00
Replace remaining explicit network value checks by Protocol::supportsFollow calls
This commit is contained in:
parent
5028258c3b
commit
b214470b1a
2 changed files with 2 additions and 2 deletions
|
@ -67,7 +67,7 @@ function unfollow_content(App $a)
|
|||
// NOTREACHED
|
||||
}
|
||||
|
||||
if (!in_array($contact['network'], Protocol::NATIVE_SUPPORT)) {
|
||||
if (!Protocol::supportsFollow($contact['network'])) {
|
||||
notice(DI::l10n()->t('Unfollowing is currently not supported by your network.'));
|
||||
DI::baseUrl()->redirect($base_return_path . '/' . $contact['id']);
|
||||
// NOTREACHED
|
||||
|
|
|
@ -75,7 +75,7 @@ class VCard
|
|||
$pending = $pcontact['pending'] ?? false;
|
||||
}
|
||||
|
||||
if (!$contact['self'] && in_array($contact['network'], Protocol::NATIVE_SUPPORT)) {
|
||||
if (!$contact['self'] && Protocol::supportsFollow($contact['network'])) {
|
||||
if (in_array($rel, [Contact::SHARING, Contact::FRIEND])) {
|
||||
$unfollow_link = 'unfollow?url=' . urlencode($contact['url']) . '&auto=1';
|
||||
} elseif (!$pending) {
|
||||
|
|
Loading…
Reference in a new issue