From 9395eb94ab932c54b54892d8293ca4579989dd6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathis=20Dr=C3=B6ge?= Date: Fri, 23 Aug 2024 15:11:18 +0200 Subject: [PATCH] [core] Skip library items with no appName (#649) --- legendary/core.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/legendary/core.py b/legendary/core.py index 9181de0..934aad0 100644 --- a/legendary/core.py +++ b/legendary/core.py @@ -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':