diff --git a/vrobbler/apps/videogames/igdb.py b/vrobbler/apps/videogames/igdb.py index c97bd59..c8d8719 100644 --- a/vrobbler/apps/videogames/igdb.py +++ b/vrobbler/apps/videogames/igdb.py @@ -72,7 +72,7 @@ def lookup_game_from_igdb(name_or_igdb_id: str) -> Dict: fields = "id,name,alternative_names.*,genres.*,release_dates.*,cover.*,screenshots.*,rating,rating_count,summary" game_dict = {} - body = f"fields {fields}; where id = {igdb_id};" + body = f"fields {fields}; where id = {igdb_id}; sort id asc;" response = requests.post(GAMES_URL, data=body, headers=headers) results = json.loads(response.content) if not results: