From e7ce2e5cb7f1f37026c4840f1e38ecd23a0a9b20 Mon Sep 17 00:00:00 2001 From: derrod Date: Sat, 2 Oct 2021 21:21:46 +0200 Subject: [PATCH] [core] Force-refresh aliases when fetching games without assets --- legendary/core.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/legendary/core.py b/legendary/core.py index 2a326e4..4d6ce3f 100644 --- a/legendary/core.py +++ b/legendary/core.py @@ -385,6 +385,8 @@ class LegendaryCore: elif not any(i['path'] == 'mods' for i in game.metadata.get('categories', [])): _ret.append(game) + # Force refresh to make sure these titles are included in aliasing + self.update_aliases(force=True) return _ret, _dlc def get_dlc_for_game(self, app_name):