From f06065337c81a035726bf313f5f91a88d39c258e Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 14 May 2024 15:18:59 +0200 Subject: [PATCH] chore: Handle invalid cron strings in Kernel.php --- app/Console/Kernel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 0c9f59f90..51e4cfc17 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -144,7 +144,7 @@ class Kernel extends ConsoleKernel } } if ($service) { - if (str($service->status)->contains('running') === false) { + if (str($service->status())->contains('running') === false) { continue; } }