Merge pull request #12594 from annando/diaspora-communication
Fix communication to Diaspora when not in bulk mode
This commit is contained in:
commit
fde223327f
|
@ -566,9 +566,9 @@ class Notifier
|
|||
}
|
||||
|
||||
if (empty($contact['gsid'])) {
|
||||
$reachable = !GServer::reachable($contact);
|
||||
$reachable = GServer::reachable($contact);
|
||||
} elseif (!DI::config()->get('system', 'bulk_delivery')) {
|
||||
$reachable = !GServer::isReachableById($contact['gsid']);
|
||||
$reachable = GServer::isReachableById($contact['gsid']);
|
||||
} else {
|
||||
$reachable = !GServer::isDefunctById($contact['gsid']);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue