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'])) {
|
if (empty($contact['gsid'])) {
|
||||||
$reachable = !GServer::reachable($contact);
|
$reachable = GServer::reachable($contact);
|
||||||
} elseif (!DI::config()->get('system', 'bulk_delivery')) {
|
} elseif (!DI::config()->get('system', 'bulk_delivery')) {
|
||||||
$reachable = !GServer::isReachableById($contact['gsid']);
|
$reachable = GServer::isReachableById($contact['gsid']);
|
||||||
} else {
|
} else {
|
||||||
$reachable = !GServer::isDefunctById($contact['gsid']);
|
$reachable = !GServer::isDefunctById($contact['gsid']);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user