From: Michael Date: Sun, 1 Jan 2023 19:52:08 +0000 (+0000) Subject: Fix communication to Diaspora when not in bulk mode X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=24065d307b713a047137f30575d10a55890a3bd4;p=friendica.git Fix communication to Diaspora when not in bulk mode --- diff --git a/src/Worker/Notifier.php b/src/Worker/Notifier.php index c2f542dd32..0b7460c53d 100644 --- a/src/Worker/Notifier.php +++ b/src/Worker/Notifier.php @@ -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']); }