Add server block provision to Diaspora::postAllow
This commit is contained in:
parent
d40cbdce32
commit
704cb052ca
1 changed files with 5 additions and 2 deletions
|
@ -1135,8 +1135,11 @@ class Diaspora
|
|||
// Logger::log("defining user ".$contact["nick"]." as friend");
|
||||
//}
|
||||
|
||||
// Contact server is blocked
|
||||
if (Network::isUrlBlocked($contact['url'])) {
|
||||
return false;
|
||||
// We don't seem to like that person
|
||||
if ($contact["blocked"]) {
|
||||
} elseif ($contact["blocked"]) {
|
||||
// Maybe blocked, don't accept.
|
||||
return false;
|
||||
// We are following this person?
|
||||
|
|
Loading…
Reference in a new issue