From f93b82605cf2f6aa5b512ddcc1f70bf12fd71cc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathis=20Dr=C3=B6ge?= Date: Thu, 28 Mar 2024 10:30:10 +0100 Subject: [PATCH] Skip library items with no appName --- 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':