From e6fc929c17202edffdf8e0b847eebc84981e9e23 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sat, 20 Jul 2019 14:04:46 +0100 Subject: [PATCH] cdn: dont check licenses when decrypt=False for get_manifests() --- steam/client/cdn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steam/client/cdn.py b/steam/client/cdn.py index d41ca84..2cb0e62 100644 --- a/steam/client/cdn.py +++ b/steam/client/cdn.py @@ -713,7 +713,7 @@ class CDNClient(object): continue # if we have no license for the depot, no point trying as we won't get depot_key - if depot_id not in self.licensed_depot_ids: + if decrypt and depot_id not in self.licensed_depot_ids: self._LOG.debug("No license for depot %s (%s). Skipping...", repr(depot_info['name']), depot_id,