Whoops; the 'appid' equivalent for the lutris service is the slug, of course.

This commit is contained in:
Daniel Johnson 2024-01-07 09:34:04 -05:00
parent 553db0fb46
commit 858786decd

View file

@ -180,7 +180,7 @@ class GameStore(GObject.Object):
if service_id and db_games:
all_games = get_all_game_for_service(service_id)
if service_id == "lutris":
installed_db_games = {g["id"]: g for g in all_games}
installed_db_games = {g["slug"]: g for g in all_games}
else:
installed_db_games = {g["service_id"]: g for g in all_games}