Skip to content

Commit

Permalink
[core] Skip library items with no appName (#649)
Browse files Browse the repository at this point in the history
  • Loading branch information
CommandMC authored Aug 23, 2024
1 parent 90e5f75 commit 9395eb9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions legendary/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,8 @@ def get_non_asset_library_items(self, force_refresh=False,
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':
Expand Down

0 comments on commit 9395eb9

Please sign in to comment.