Browse Source

client/cdn: manifest returns dict, gid is a key

Fixes exception on get_manifests.
pull/461/head
StalkR 12 months ago
parent
commit
0edb0656bb
  1. 4
      steam/client/cdn.py

4
steam/client/cdn.py

@ -832,9 +832,9 @@ class CDNClient(object):
manifest_gid = decrypt_manifest_gid_2(unhexlify(egid),
self.beta_passwords[(app_id, branch)])
else:
manifest_gid = depot_info.get('manifests', {}).get('public')
manifest_gid = depot_info.get('manifests', {}).get('public').get('gid')
else:
manifest_gid = depot_info.get('manifests', {}).get(branch)
manifest_gid = depot_info.get('manifests', {}).get(branch).get('gid')
if manifest_gid is not None:
tasks.append(

Loading…
Cancel
Save