Skip to content

Commit

Permalink
[core] Ignore problematic app name
Browse files Browse the repository at this point in the history
This is a test app that isn't used for anything,
but it will mess up Heroic if you also have the
GOG title with id "1" (Fallout Classic).
  • Loading branch information
derrod committed Sep 30, 2023
1 parent c6e622f commit 4c76532
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions legendary/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,6 +517,8 @@ def get_non_asset_library_items(self, force_refresh=False,
_dlc = defaultdict(list)
# get all the appnames we have to ignore
ignore = set(i.app_name for i in self.get_assets())
# broken old app name that we should always ignore
ignore |= {'1'}

for libitem in self.egs.get_library_items():
if libitem['namespace'] == 'ue' and skip_ue:
Expand Down

0 comments on commit 4c76532

Please sign in to comment.