From d1f14354cec5dda30f3cb1fa28906eaf6dc81db4 Mon Sep 17 00:00:00 2001 From: Gobot1234 Date: Fri, 10 Jan 2025 18:16:10 +0000 Subject: [PATCH] Properly disable access token usage on user fetching --- steam/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steam/http.py b/steam/http.py index 5555acab..2f0603d6 100644 --- a/steam/http.py +++ b/steam/http.py @@ -238,7 +238,7 @@ async def get_users(self, user_id64s: Iterable[ID64]) -> AsyncGenerator[user.Use self.get( api_route("ISteamUser/GetPlayerSummaries", version=2), params={"steamids": ",".join(map(str, sublist))}, - access_token=False, + supports_access_token=False, ) for sublist in utils.as_chunks(user_id64s, 100) )