From 6a0873c38bc935558e78013bae1b773ffabf3126 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sat, 20 Jul 2019 10:44:57 +0100 Subject: [PATCH] cdn: add get_app_depot_info() to allow overriding caching behaviour --- steam/client/cdn.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/steam/client/cdn.py b/steam/client/cdn.py index 170bb76..661c4b8 100644 --- a/steam/client/cdn.py +++ b/steam/client/cdn.py @@ -653,6 +653,11 @@ class CDNClient(object): return EResult(resp.eresult) + def get_app_depot_info(self, app_id): + if app_id not in self.app_depots: + self.app_depots[app_id] = self.steam.get_product_info([app_id])['apps'][app_id]['depots'] + return self.app_depots[app_id] + def get_manifests(self, app_id, branch='public', password=None, filter_func=None): """Get a list of CDNDepotManifest for app @@ -668,9 +673,7 @@ class CDNClient(object): :rtype: :class:`list` [:class:`.CDNDepotManifest`] :raises SteamError: error message """ - if app_id not in self.app_depots: - self.app_depots[app_id] = self.steam.get_product_info([app_id])['apps'][app_id]['depots'] - depots = self.app_depots[app_id] + depots = self.get_app_depot_info(app_id) is_enc_branch = False