mirror of
https://github.com/zeropingheroes/lancache-autofill
synced 2024-11-10 02:14:12 +00:00
Check if SteamSpy API returns no apps
This commit is contained in:
parent
5b170c3bcf
commit
9ae96baacd
1 changed files with 7 additions and 0 deletions
|
@ -67,6 +67,13 @@ class QueuePopularApps extends Command
|
|||
|
||||
$apps = json_decode($result->getBody(), true);
|
||||
|
||||
if ( ! count($apps) ) {
|
||||
$this->error('SteamSpy API did not return any apps:');
|
||||
$this->error(self::POPULAR_STEAM_APP_LIST_URL . ' returned:');
|
||||
$this->error($result->getBody());
|
||||
die();
|
||||
}
|
||||
|
||||
$i = 0;
|
||||
|
||||
foreach ($apps as $appId => $app) {
|
||||
|
|
Loading…
Reference in a new issue