From 66265b5a7cb5e2709806e0ad807eb9cb7bbba4be Mon Sep 17 00:00:00 2001 From: sveng93 Date: Wed, 3 Dec 2025 16:01:03 +0100 Subject: [PATCH] Fix notifications --- app/Listeners/ProcessCompletedSpeedtest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Listeners/ProcessCompletedSpeedtest.php b/app/Listeners/ProcessCompletedSpeedtest.php index c764cb275..228151750 100644 --- a/app/Listeners/ProcessCompletedSpeedtest.php +++ b/app/Listeners/ProcessCompletedSpeedtest.php @@ -55,7 +55,7 @@ private function notifyAppriseChannels(Result $result): void private function notifyDatabaseChannels(Result $result): void { // Don't send database notification if dispatched by a user or test is unhealthy. - if (filled($result->dispatched_by) || ! $result->healthy === false) { + if (filled($result->dispatched_by) || $result->healthy === false) { return; }