Fix handle method in ServerStatusJob

This commit is contained in:
Andras Bacsai 2023-12-20 12:33:58 +01:00
parent 66b41b3d4c
commit c9a1437870

View File

@ -35,7 +35,7 @@ public function uniqueId(): int
return $this->server->uuid; return $this->server->uuid;
} }
public function handle(): void public function handle()
{ {
ray("checking server status for {$this->server->id}"); ray("checking server status for {$this->server->id}");
if (!$this->server->isServerReady(4)) { if (!$this->server->isServerReady(4)) {
@ -48,7 +48,7 @@ public function handle(): void
} catch (\Throwable $e) { } catch (\Throwable $e) {
send_internal_notification('ServerStatusJob failed with: ' . $e->getMessage()); send_internal_notification('ServerStatusJob failed with: ' . $e->getMessage());
ray($e->getMessage()); ray($e->getMessage());
handleError($e); return handleError($e);
} }
} }
public function cleanup(bool $notify = false): void public function cleanup(bool $notify = false): void