Fix communication to Diaspora when not in bulk mode

This commit is contained in:
Michael 2023-01-01 19:52:08 +00:00
parent 50ef24cb14
commit 24065d307b
1 changed files with 2 additions and 2 deletions

View File

@ -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']);
}