forked from Alex/Pterodactyl-Panel
Merge pull request #3072 from pterodactyl/matthewpi/fix-server-installs
api(remote): fix inproper reading of boolean for installation status
This commit is contained in:
commit
9af1b9c3ac
@ -56,7 +56,7 @@ class ServerInstallController extends Controller
|
||||
{
|
||||
$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) {
|
||||
$status = Server::STATUS_SUSPENDED;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user