Browse Source

Merge 783f023236 into 26166e047b

pull/437/merge
Simon McVittie 2 years ago
committed by GitHub
parent
commit
1edda38f4d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      steam/client/cdn.py

6
steam/client/cdn.py

@ -836,6 +836,12 @@ class CDNClient(object):
else:
manifest_gid = depot_info.get('manifests', {}).get(branch)
if isinstance(manifest_gid, dict):
# For some depots, Steam has started returning a dict
# {"public": {"gid": GID, "size": ..., "download": ...}, ...}
# instead of a simple map {"public": GID, ...}
manifest_gid = manifest_gid['gid']
if manifest_gid is not None:
tasks.append(
self.gpool.spawn(

Loading…
Cancel
Save