mirror of
https://github.com/derrod/legendary.git
synced 2024-12-22 01:45:28 +00:00
[core] Ignore problematic app name
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).
This commit is contained in:
parent
c6e622f3ae
commit
4c765325af
|
@ -517,6 +517,8 @@ class LegendaryCore:
|
|||
_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:
|
||||
|
|
Loading…
Reference in a new issue