From 1ea25253a5db8d5ddf1f5f79e8e4a9aed745602e Mon Sep 17 00:00:00 2001 From: Stelios Tsampas Date: Thu, 16 Apr 2026 12:11:04 +0300 Subject: [PATCH] [cli] correctly pass `get_assets` platform argument --- legendary/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legendary/cli.py b/legendary/cli.py index b6d642e..619c539 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -1734,7 +1734,7 @@ class LegendaryCLI: # list all owned DLC based on entitlements if entitlements and not game.is_dlc: owned_entitlements = {i['entitlementName'] for i in entitlements} - owned_app_names = {g.app_name for g in self.core.get_assets(args.platform)} + owned_app_names = {g.app_name for g in self.core.get_assets(platform=args.platform)} owned_dlc = [] for dlc in game.metadata.get('dlcItemList', []): installable = dlc.get('releaseInfo', None)