Skip to content

Commit d1f1435

Browse files
committed
Properly disable access token usage on user fetching
1 parent 4f239e0 commit d1f1435

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: steam/http.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ async def get_users(self, user_id64s: Iterable[ID64]) -> AsyncGenerator[user.Use
238238
self.get(
239239
api_route("ISteamUser/GetPlayerSummaries", version=2),
240240
params={"steamids": ",".join(map(str, sublist))},
241-
access_token=False,
241+
supports_access_token=False,
242242
)
243243
for sublist in utils.as_chunks(user_id64s, 100)
244244
)

0 commit comments

Comments
 (0)