diff --git a/app/Jobs/ServerStatusJob.php b/app/Jobs/ServerStatusJob.php index 2cdf4d547..96fc8f75c 100644 --- a/app/Jobs/ServerStatusJob.php +++ b/app/Jobs/ServerStatusJob.php @@ -35,7 +35,7 @@ public function uniqueId(): int return $this->server->uuid; } - public function handle(): void + public function handle() { ray("checking server status for {$this->server->id}"); if (!$this->server->isServerReady(4)) { @@ -48,7 +48,7 @@ public function handle(): void } catch (\Throwable $e) { send_internal_notification('ServerStatusJob failed with: ' . $e->getMessage()); ray($e->getMessage()); - handleError($e); + return handleError($e); } } public function cleanup(bool $notify = false): void