From 8db3a0549853f75dc41c6a53e6e1ea4c6859eb62 Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Sun, 17 Jan 2021 16:08:41 -0800 Subject: [PATCH] ;-; --- .../Controllers/Api/Remote/Servers/ServerInstallController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/Api/Remote/Servers/ServerInstallController.php b/app/Http/Controllers/Api/Remote/Servers/ServerInstallController.php index 976493835..c8f09fe8f 100644 --- a/app/Http/Controllers/Api/Remote/Servers/ServerInstallController.php +++ b/app/Http/Controllers/Api/Remote/Servers/ServerInstallController.php @@ -64,7 +64,7 @@ class ServerInstallController extends Controller $status = $request->input('successful') === '1' ? null : Server::STATUS_INSTALL_FAILED; if ($server->status === Server::STATUS_SUSPENDED) { - $status = Server::STATUS_SUSPENDED + $status = Server::STATUS_SUSPENDED; } $this->repository->update($server->id, ['status' => $status], true, true);