Browse Source

fix license check for DLC depots

pull/321/head
Rossen Georgiev 4 years ago
parent
commit
8ce3b50414
  1. 4
      steam/client/cdn.py

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

Loading…
Cancel
Save