This commit is contained in:
Dane Everitt 2021-01-17 16:08:41 -08:00
parent b38b8f6465
commit 8db3a05498
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -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);