From 8ce3b5041450ef9ae0b28f7138d865d9a3d82e48 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Fri, 5 Mar 2021 19:32:41 +0000 Subject: [PATCH] fix license check for DLC depots --- steam/client/cdn.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/steam/client/cdn.py b/steam/client/cdn.py index 4e14b3f..568f188 100644 --- a/steam/client/cdn.py +++ b/steam/client/cdn.py @@ -725,7 +725,9 @@ class CDNClient(object): continue # if we have no license for the depot, no point trying as we won't get depot_key - if decrypt and depot_id not in self.licensed_depot_ids: + if (decrypt + and depot_id not in self.licensed_depot_ids + and depot_id not in self.licensed_app_ids): self._LOG.debug("No license for depot %s (%s). Skipping...", repr(depot_info['name']), depot_id,