summaryrefslogtreecommitdiff
path: root/bridges/GOGBridge.php
diff options
context:
space:
mode:
Diffstat (limited to 'bridges/GOGBridge.php')
-rw-r--r--bridges/GOGBridge.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/bridges/GOGBridge.php b/bridges/GOGBridge.php
index 669332f..09f47b4 100644
--- a/bridges/GOGBridge.php
+++ b/bridges/GOGBridge.php
@@ -8,8 +8,8 @@ class GOGBridge extends BridgeAbstract {
public function collectData() {
- $values = getContents('https://www.gog.com/games/ajax/filtered?limit=25&sort=new') or
- die('Unable to get the news pages from GOG !');
+ $values = getContents('https://www.gog.com/games/ajax/filtered?limit=25&sort=new')
+ or returnServerError('Unable to get the news pages from GOG !');
$decodedValues = json_decode($values);
$limit = 0;
@@ -38,8 +38,8 @@ class GOGBridge extends BridgeAbstract {
private function buildGameContentPage($game) {
- $gameDescriptionText = getContents('https://api.gog.com/products/' . $game->id . '?expand=description') or
- die('Unable to get game description from GOG !');
+ $gameDescriptionText = getContents('https://api.gog.com/products/' . $game->id . '?expand=description')
+ or returnServerError('Unable to get game description from GOG !');
$gameDescriptionValue = json_decode($gameDescriptionText);