Skip to content

Commit ff34938

Browse files
authored
bug: fix database notifications being sent double (alexjustesen#2477)
1 parent d27000f commit ff34938

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Listeners/ProcessCompletedSpeedtest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ private function notifyAppriseChannels(Result $result): void
5555
private function notifyDatabaseChannels(Result $result): void
5656
{
5757
// Don't send database notification if dispatched by a user or test is unhealthy.
58-
if (filled($result->dispatched_by) || ! $result->healthy === false) {
58+
if (filled($result->dispatched_by) || $result->healthy === false) {
5959
return;
6060
}
6161

0 commit comments

Comments
 (0)