Browse Source

add CDNClient.clear_cache(); fix #291

pull/309/head
Rossen Georgiev 4 years ago
parent
commit
caa7072cf0
  1. 6
      steam/client/cdn.py

6
steam/client/cdn.py

@ -466,6 +466,12 @@ class CDNClient(object):
self.load_licenses()
def clear_cache(self):
"""Cleared cached information. Next call on methods with caching will return fresh data"""
self.manifests.clear()
self.app_depots.clear()
self.beta_passwords.clear()
def load_licenses(self):
"""Read licenses from SteamClient instance, required for determining accessible content"""
self.licensed_app_ids.clear()

Loading…
Cancel
Save