From: Hypolite Petovan <hypolite@mrpetovan.com>
Date: Fri, 28 Feb 2020 03:14:00 +0000 (-0500)
Subject: Only show remote follow button for local profiles
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c0f2ef4ab087dfbcee7482ca60bab2c463a73c89;p=friendica.git

Only show remote follow button for local profiles
---

diff --git a/src/Model/Profile.php b/src/Model/Profile.php
index cf9e7c6202..867a6db4fb 100644
--- a/src/Model/Profile.php
+++ b/src/Model/Profile.php
@@ -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) {