]> git.mxchange.org Git - friendica.git/commitdiff
Add Protocol::NATIVE_SUPPORT constant usage to mod/contacts
authorHypolite Petovan <mrpetovan@gmail.com>
Fri, 31 Aug 2018 01:03:57 +0000 (21:03 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Fri, 31 Aug 2018 01:03:57 +0000 (21:03 -0400)
mod/contacts.php

index 38896a611a3c7d08f88a480bf2d31dd36665534a..227a48b9654702783f2613fbc8ebb6b67ed0e711 100644 (file)
@@ -595,17 +595,12 @@ function contacts_content(App $a, $update = 0)
                /// @todo Only show the following link with DFRN when the remote version supports it
                $follow = '';
                $follow_text = '';
-               if ($contact['network'] != Protocol::STATUSNET) {
-                       if (in_array($contact['rel'], [Contact::FRIEND, Contact::SHARING])) {
+               if (in_array($contact['rel'], [Contact::FRIEND, Contact::SHARING])) {
+                       if (in_array($contact['network'], Protocol::NATIVE_SUPPORT)) {
                                $follow = System::baseUrl(true) . "/unfollow?url=" . urlencode($contact["url"]);
                                $follow_text = L10n::t("Disconnect/Unfollow");
-                       } else {
-                               $follow = System::baseUrl(true) . "/follow?url=" . urlencode($contact["url"]);
-                               $follow_text = L10n::t("Connect/Follow");
                        }
-               }
-
-               if ($contact['uid'] == 0) {
+               } else {
                        $follow = System::baseUrl(true) . "/follow?url=" . urlencode($contact["url"]);
                        $follow_text = L10n::t("Connect/Follow");
                }