Skip library items with no appName

This commit is contained in:
Mathis Dröge 2024-03-28 10:30:10 +01:00
parent 7fefdc4973
commit f93b82605c
No known key found for this signature in database
GPG key ID: 3071D4EFBB298F5F

View file

@ -526,6 +526,8 @@ class LegendaryCore:
for libitem in self.egs.get_library_items():
if libitem['namespace'] == 'ue' and skip_ue:
continue
if 'appName' not in libitem:
continue
if libitem['appName'] in ignore:
continue
if libitem['sandboxType'] == 'PRIVATE':