]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #6600 from annando/false-notifications
authorHypolite Petovan <hypolite@mrpetovan.com>
Wed, 6 Feb 2019 21:47:08 +0000 (16:47 -0500)
committerGitHub <noreply@github.com>
Wed, 6 Feb 2019 21:47:08 +0000 (16:47 -0500)
The automatic follow request is currently deactivated

src/Protocol/ActivityPub/Transmitter.php

index f5953e7c5fcdab1e5bc54aba944b48d0440d53ee..0ee619a7321c27b20cb55e658496b77e52b4a0b4 100644 (file)
@@ -1298,6 +1298,10 @@ class Transmitter
         */
        public static function sendFollowObject($object, $target, $uid = 0)
        {
+               // Currently deactivated, due to notification problems.
+               // The follow message is reflected back and then causes false notifications.
+               return true;
+
                $profile = APContact::getByURL($target);
 
                if (empty($uid)) {