Skip to content

Commit

Permalink
[core] Ignore private apps in library items
Browse files Browse the repository at this point in the history
Fixes #618
  • Loading branch information
derrod committed Nov 22, 2023
1 parent f1d8157 commit d2963db
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 @@ -525,6 +525,8 @@ def get_non_asset_library_items(self, force_refresh=False,
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:
Expand Down

0 comments on commit d2963db

Please sign in to comment.