diff --git a/app/Listeners/ProcessCompletedSpeedtest.php b/app/Listeners/ProcessCompletedSpeedtest.php index b67366cfe..c764cb275 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) { + if (filled($result->dispatched_by) || ! $result->healthy === false) { return; } @@ -104,7 +104,7 @@ private function notifyDispatchingUser(Result $result): void */ private function notifyMailChannels(Result $result): void { - if (filled($result->dispatched_by) || ! $result->healthy) { + if (filled($result->dispatched_by) || $result->healthy === false) { return; } @@ -130,7 +130,7 @@ private function notifyMailChannels(Result $result): void private function notifyWebhookChannels(Result $result): void { // Don't send webhook if dispatched by a user or test is unhealthy. - if (filled($result->dispatched_by) || ! $result->healthy) { + if (filled($result->dispatched_by) || $result->healthy === false) { return; } diff --git a/config/speedtest.php b/config/speedtest.php index 9b27a9f4a..3e8e3de1c 100644 --- a/config/speedtest.php +++ b/config/speedtest.php @@ -6,9 +6,9 @@ /** * General settings. */ - 'build_date' => Carbon::parse('2025-11-28'), + 'build_date' => Carbon::parse('2025-11-30'), - 'build_version' => 'v1.10.2', + 'build_version' => 'v1.10.3', 'content_width' => env('CONTENT_WIDTH', '7xl'),