Browse Source

cdn: dont check licenses when decrypt=False for get_manifests()

pull/214/head
Rossen Georgiev 6 years ago
parent
commit
e6fc929c17
  1. 2
      steam/client/cdn.py

2
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,

Loading…
Cancel
Save