From d2963db5b20df58fb82af422ea03806d30ecd2e0 Mon Sep 17 00:00:00 2001 From: derrod Date: Wed, 22 Nov 2023 19:33:40 +0100 Subject: [PATCH] [core] Ignore private apps in library items Fixes #618 --- legendary/core.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/legendary/core.py b/legendary/core.py index c6442d2..8acef74 100644 --- a/legendary/core.py +++ b/legendary/core.py @@ -525,6 +525,8 @@ class LegendaryCore: continue if libitem['appName'] in ignore: continue + if libitem['sandboxType'] == 'PRIVATE': + continue game = self.lgd.get_game_meta(libitem['appName']) if not game or force_refresh: