summaryrefslogtreecommitdiff
path: root/SteamAPI.py
diff options
context:
space:
mode:
Diffstat (limited to 'SteamAPI.py')
-rw-r--r--SteamAPI.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/SteamAPI.py b/SteamAPI.py
index e6548fc..c71f438 100644
--- a/SteamAPI.py
+++ b/SteamAPI.py
@@ -337,8 +337,9 @@ class SteamAPI():
profiles[steamid]['_friends'] = futures['friends'][steamid].result()
profiles[steamid]['_userstats'] = futures['userstats'][steamid].result()
profiles[steamid]['_ownedGames'] = futures['ownedGames'][steamid].result()
- profiles[steamid]['_ownedPlayedGames'] = len([game for game in profiles[steamid]['_ownedGames']['games'] if game['playtime_forever'] > 0])
-
+ profiles[steamid]['_ownedPlayedGames'] = 'n/a'
+ if profiles[steamid]['_ownedGames']:
+ profiles[steamid]['_ownedPlayedGames'] = len([game for game in profiles[steamid]['_ownedGames']['games'] if game['playtime_forever'] > 0])
return profiles