We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 98c2f37 + 10998f3 commit 723272eCopy full SHA for 723272e
src/Syntax/SteamApi/Steam/Player.php
@@ -111,7 +111,7 @@ public function GetRecentlyPlayedGames($count = null)
111
// Get the client
112
$client = $this->getServiceResponse($arguments);
113
114
- if ($client->total_count > 0) {
+ if (isset($client->total_count) && $client->total_count > 0) {
115
// Clean up the games
116
$games = $this->convertToObjects($client->games);
117
0 commit comments