]> git.mxchange.org Git - friendica.git/commitdiff
Diaspora: Accept posts from archived contacts
authorMichael <heluecht@pirati.ca>
Wed, 14 Feb 2018 14:29:28 +0000 (14:29 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 14 Feb 2018 14:29:28 +0000 (14:29 +0000)
src/Protocol/Diaspora.php

index 534f6ed6ba241d9e34dfbdd72404544c6af1e878..992da9109a3fbad4ddac8798995bfb3f730732e9 100644 (file)
@@ -1057,7 +1057,7 @@ class Diaspora
                //}
 
                // We don't seem to like that person
-               if ($contact["blocked"] || $contact["readonly"] || $contact["archive"]) {
+               if ($contact["blocked"] || $contact["readonly"]) {
                        // Maybe blocked, don't accept.
                        return false;
                        // We are following this person?
@@ -3237,7 +3237,7 @@ class Diaspora
                        Contact::unmarkForArchival($contact);
                }
 
-               return(($return_code) ? $return_code : (-1));
+               return $return_code ? $return_code : -1;
        }