Browse Source

Merge 9abf70b620 into 26166e047b

pull/476/merge
Yorick 5 months ago
committed by GitHub
parent
commit
25ce587457
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  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