Simon McVittie
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
0 deletions
-
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( |
|
|
|