Fix SteamGridDB query

This commit is contained in:
kramo
2023-04-06 14:21:40 +02:00
parent 06026757d6
commit c8bc101c96

View File

@@ -62,9 +62,8 @@ class SGDBSave:
return return
try: try:
headers["dimensions"] = "600x900"
grid = requests.get( grid = requests.get(
f'{url}grids/game/{search_result.json()["data"][0]["id"]}', f'{url}grids/game/{search_result.json()["data"][0]["id"]}?dimensions=600x900',
headers=headers, headers=headers,
timeout=5, timeout=5,
) )