From 451c53f021d5e0391997a0a408b3c0e5b05b5bd3 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sat, 13 Jul 2019 20:00:05 +0100 Subject: [PATCH] cdn: use only depot_id for caching decrypt keys --- steam/client/cdn.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/steam/client/cdn.py b/steam/client/cdn.py index 26605c5..7638a24 100644 --- a/steam/client/cdn.py +++ b/steam/client/cdn.py @@ -304,16 +304,16 @@ class CDNClient(object): :rtype: bytes :raises SteamError: error message """ - if (app_id, depot_id) not in self.depot_keys: + if depot_id not in self.depot_keys: msg = self.steam.get_depot_key(app_id, depot_id) if msg and msg.eresult == EResult.OK: - self.depot_keys[(app_id, depot_id)] = msg.depot_encryption_key + self.depot_keys[depot_id] = msg.depot_encryption_key else: raise SteamError("Failed getting depot key", EResult.Timeout if msg is None else EResult(msg.eresult)) - return self.depot_keys[(app_id, depot_id)] + return self.depot_keys[depot_id] def cdn_cmd(self, command, args): """Run CDN command request