From bd70c814b966dc754d63039cd7edeee9c9dcd357 Mon Sep 17 00:00:00 2001 From: Jeddunk Date: Wed, 7 Oct 2020 12:49:54 +0200 Subject: [PATCH] fixed dumb error --- .../java/xyz/jeddunk/autocreamapi/util/SteamAppsListCache.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/xyz/jeddunk/autocreamapi/util/SteamAppsListCache.java b/src/main/java/xyz/jeddunk/autocreamapi/util/SteamAppsListCache.java index 2f6b6a3..426d8b2 100644 --- a/src/main/java/xyz/jeddunk/autocreamapi/util/SteamAppsListCache.java +++ b/src/main/java/xyz/jeddunk/autocreamapi/util/SteamAppsListCache.java @@ -117,7 +117,7 @@ public class SteamAppsListCache { private List getApps() { HttpResponse httpResponse = - Unirest.get("https://api.steampowered.com/IStoreService/GetAppList/v2/" + + Unirest.get("https://api.steampowered.com/IStoreService/GetAppList/v1/" + "?key=" + env.getKey() + "&include_games=1&max_results=50000").asString(); return new Gson() .fromJson(httpResponse.getBody(), App.Rezponze.Download.class)