From e881e42d5ffcdbe1075c01d82a7515f7761f2d52 Mon Sep 17 00:00:00 2001 From: derrod Date: Sat, 18 Sep 2021 20:02:52 +0200 Subject: [PATCH] [core] Save non-install game metadata --- legendary/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/legendary/core.py b/legendary/core.py index 3377725..656bd18 100644 --- a/legendary/core.py +++ b/legendary/core.py @@ -367,6 +367,7 @@ class LegendaryCore: eg_meta = self.egs.get_game_info(libitem['namespace'], libitem['catalogItemId']) game = Game(app_name=libitem['appName'], app_version=None, app_title=eg_meta['title'], asset_info=None, metadata=eg_meta) + self.lgd.set_game_meta(game.app_name, game) if game.is_dlc: _dlc[game.metadata['mainGameItem']['id']].append(game)