diff options
Diffstat (limited to 'bridges/SteamBridge.php')
-rw-r--r-- | bridges/SteamBridge.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bridges/SteamBridge.php b/bridges/SteamBridge.php index d0acd6da..47d1bdac 100644 --- a/bridges/SteamBridge.php +++ b/bridges/SteamBridge.php @@ -29,8 +29,7 @@ class SteamBridge extends BridgeAbstract { $sourceUrl = self::URI . 'wishlist/profiles/' . $userid . '/wishlistdata?p=0'; $sort = array(); - $json = getContents($sourceUrl) - or returnServerError('Could not get content from wishlistdata (' . $sourceUrl . ')'); + $json = getContents($sourceUrl); $appsData = json_decode($json); |