From 82aceb3b18b45cfb11f5976b9a8d7cb864ed9984 Mon Sep 17 00:00:00 2001 From: Rishabh Moharir <74495920+redromnon@users.noreply.github.com> Date: Fri, 28 Apr 2023 22:26:14 +0530 Subject: [PATCH] Fix/update gog library path (#75) --- src/importers/heroic_importer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/importers/heroic_importer.py b/src/importers/heroic_importer.py index cd661d6..fac6921 100644 --- a/src/importers/heroic_importer.py +++ b/src/importers/heroic_importer.py @@ -137,7 +137,7 @@ def heroic_importer(win): continue # Get game title and developer from library.json as they are not present in installed.json - library = json.load((heroic_dir / "gog_store" / "library.json").open()) + library = json.load((heroic_dir / "store_cache" / "gog_library.json").open()) for game in library["games"]: if game["app_name"] == app_name: values["developer"] = game["developer"]