[core] Skip library items with no appName (#649)

This commit is contained in:
Mathis Dröge 2024-08-23 15:11:18 +02:00 committed by GitHub
parent 90e5f75af0
commit 9395eb94ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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':