Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update publishers to check the collection
  • Loading branch information
ZeBartosz authored Oct 15, 2024
commit f59e7a6d83f066df880fbf5b12f079b4cc218994
2 changes: 1 addition & 1 deletion src/Syntax/SteamApi/Containers/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down