Skip to content

Commit

Permalink
fix(steam): get(params)
Browse files Browse the repository at this point in the history
  • Loading branch information
pennersr committed Jan 5, 2024
1 parent 8ee2cb9 commit 0bb3cec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion allauth/socialaccount/providers/steam/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def request_steam_account_summary(api_key, steam_id):
method = "ISteamUser/GetPlayerSummaries/v0002/"
params = {"key": api_key, "steamids": steam_id}

resp = get_adapter().get_requests_session().get(api_base + method, params)
resp = get_adapter().get_requests_session().get(api_base + method, params=params)
resp.raise_for_status()
data = resp.json()

Expand Down

0 comments on commit 0bb3cec

Please sign in to comment.