Only show remote follow button for local profiles
authorHypolite Petovan <hypolite@mrpetovan.com>
Fri, 28 Feb 2020 03:14:00 +0000 (22:14 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Fri, 28 Feb 2020 03:14:00 +0000 (22:14 -0500)
src/Model/Profile.php

index cf9e7c6..867a6db 100644 (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) {