Only show remote follow button for local profiles

This commit is contained in:
Hypolite Petovan 2020-02-27 22:14:00 -05:00
parent 4df567ebce
commit c0f2ef4ab0
1 changed files with 2 additions and 1 deletions

View File

@ -330,7 +330,8 @@ class Profile
if (!$local_user_is_self && $show_connect) {
if (!$visitor_is_authenticated) {
if (!empty($profile['nickname'])) {
// Remote follow is only available for local profiles
if (!empty($profile['nickname']) && strpos($profile_url, DI::baseUrl()->get()) === 0) {
$follow_link = 'remote_follow/' . $profile['nickname'];
}
} elseif ($profile_is_native) {