1
0
Fork 0
mirror of synced 2024-06-28 19:20:34 +12:00

Corrected what was being sent to the get_app_id method

This commit is contained in:
Phxntxm 2016-08-19 18:11:53 -05:00
parent 305d18ba64
commit 4ce7340600

View file

@ -110,7 +110,7 @@ class Steam:
return
app_id = int(option[1])
except ValueError:
app_id = get_app_id(option[1].lower())
app_id = get_app_id(game.lower())
url = "{}/ISteamUserStats/GetPlayerAchievements/v0001/?key={}&steamid={}&appid={}".format(base_url, self.key, steam_id, app_id)
elif option[0] == "games":