Isseu: Pterodactyl zero allocations found #24
This commit is contained in:
parent
933e56101c
commit
137f54818d
1 changed files with 6 additions and 2 deletions
|
@ -49,8 +49,12 @@ class Pterodactyl
|
|||
$response = self::getAllocations($node);
|
||||
$freeAllocations = [];
|
||||
|
||||
foreach ($response['data'] as $allocation) {
|
||||
if (!$allocation['attributes']['assigned']) array_push($freeAllocations, $allocation);
|
||||
if(isset($response['data'])){
|
||||
if (!empty($response['data'])) {
|
||||
foreach ($response['data'] as $allocation) {
|
||||
if (!$allocation['attributes']['assigned']) array_push($freeAllocations, $allocation);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $freeAllocations;
|
||||
|
|
Loading…
Add table
Reference in a new issue