We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abbf04a commit 922c018Copy full SHA for 922c018
steam/client/cdn.py
@@ -829,9 +829,9 @@ def async_fetch_manifest(
829
manifest_gid = decrypt_manifest_gid_2(unhexlify(egid),
830
self.beta_passwords[(app_id, branch)])
831
else:
832
- manifest_gid = depot_info.get('manifests', {}).get('public')
+ manifest_gid = depot_info.get('manifests', {}).get('public').get('gid')
833
834
- manifest_gid = depot_info.get('manifests', {}).get(branch)
+ manifest_gid = depot_info.get('manifests', {}).get(branch).get('gid')
835
836
if manifest_gid is not None:
837
tasks.append(
0 commit comments