Merge branch 'develop' into feature/react-admin

This commit is contained in:
Matthew Penner 2021-02-11 09:35:21 -07:00
commit b7ee2195d7

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;
} }