api(remote): fix inproper reading of boolean for installation status

This commit is contained in:
Matthew Penner 2021-02-06 10:16:08 -07:00
parent 00da092e45
commit 352910f897

View file

@ -56,7 +56,7 @@ class ServerInstallController extends Controller
{ {
$server = $this->repository->getByUuid($uuid); $server = $this->repository->getByUuid($uuid);
$status = $request->input('successful') === '1' ? null : Server::STATUS_INSTALL_FAILED; $status = $request->boolean('successful') ? null : Server::STATUS_INSTALL_FAILED;
if ($server->status === Server::STATUS_SUSPENDED) { if ($server->status === Server::STATUS_SUSPENDED) {
$status = Server::STATUS_SUSPENDED; $status = Server::STATUS_SUSPENDED;
} }