diff --git a/src/Syntax/SteamApi/Containers/App.php b/src/Syntax/SteamApi/Containers/App.php index 11c2a58..ee6bdca 100644 --- a/src/Syntax/SteamApi/Containers/App.php +++ b/src/Syntax/SteamApi/Containers/App.php @@ -76,7 +76,7 @@ public function __construct($app) $this->pcRequirements = $app->pc_requirements; $this->legal = $this->checkIssetField($app, 'legal_notice', 'None'); $this->developers = $this->checkIssetCollection($app, 'developers'); - $this->publishers = new Collection($app->publishers); + $this->publishers = $this->checkIssetCollection($app, 'publishers'); $this->price = $this->checkIssetField($app, 'price_overview', $this->getFakePriceObject()); $this->platforms = $app->platforms; $this->metacritic = $this->checkIssetField($app, 'metacritic', $this->getFakeMetacriticObject());