We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64d03ce commit e6f7059Copy full SHA for e6f7059
1 file changed
src/Syntax/SteamApi/Containers/App.php
@@ -83,7 +83,7 @@ public function __construct($app)
83
$this->requiredAge = (int)$app->required_age;
84
$this->isFree = $app->is_free;
85
$this->shortDescription = $app->short_description;
86
- $this->supportedLanguages = $app->supported_languages;
+ $this->supportedLanguages = $this->checkIssetField($app, 'supported_languages', 'None');
87
$this->recommendations = $this->checkIssetField($app, 'recommendations', $this->getFakeRecommendationsObject());
88
$this->achievements = $this->checkIssetField($app, 'achievements', $this->getFakeAchievementsObject());
89
$this->dlc = $this->checkIssetCollection($app, 'dlc', new Collection());
0 commit comments