Skip to content

Commit

Permalink
Properly disable access token usage on user fetching
Browse files Browse the repository at this point in the history
  • Loading branch information
Gobot1234 committed Jan 10, 2025
1 parent 4f239e0 commit d1f1435
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion steam/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
)
Expand Down

0 comments on commit d1f1435

Please sign in to comment.