Skip to content

Commit 9395eb9

Browse files
authored
[core] Skip library items with no appName (#649)
1 parent 90e5f75 commit 9395eb9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

legendary/core.py

+2
Original file line numberDiff line numberDiff line change
@@ -526,6 +526,8 @@ def get_non_asset_library_items(self, force_refresh=False,
526526
for libitem in self.egs.get_library_items():
527527
if libitem['namespace'] == 'ue' and skip_ue:
528528
continue
529+
if 'appName' not in libitem:
530+
continue
529531
if libitem['appName'] in ignore:
530532
continue
531533
if libitem['sandboxType'] == 'PRIVATE':

0 commit comments

Comments
 (0)