mirror of
https://github.com/derrod/legendary.git
synced 2024-12-22 01:45:28 +00:00
[core] Skip library items with no appName (#649)
This commit is contained in:
parent
90e5f75af0
commit
9395eb94ab
|
@ -526,6 +526,8 @@ class LegendaryCore:
|
||||||
for libitem in self.egs.get_library_items():
|
for libitem in self.egs.get_library_items():
|
||||||
if libitem['namespace'] == 'ue' and skip_ue:
|
if libitem['namespace'] == 'ue' and skip_ue:
|
||||||
continue
|
continue
|
||||||
|
if 'appName' not in libitem:
|
||||||
|
continue
|
||||||
if libitem['appName'] in ignore:
|
if libitem['appName'] in ignore:
|
||||||
continue
|
continue
|
||||||
if libitem['sandboxType'] == 'PRIVATE':
|
if libitem['sandboxType'] == 'PRIVATE':
|
||||||
|
|
Loading…
Reference in a new issue