Browse Source

keep the CM server list fresh

pull/50/head
Rossen Georgiev 9 years ago
parent
commit
f4239daf2d
  1. 2
      steam/client/__init__.py

2
steam/client/__init__.py

@ -107,9 +107,9 @@ class SteamClient(CMClient, BuiltinBase):
def _handle_cm_list(self, msg): def _handle_cm_list(self, msg):
if self._cm_servers_timestamp is None: if self._cm_servers_timestamp is None:
self.cm_servers.clear()
self._cm_servers_timestamp = int(time()) self._cm_servers_timestamp = int(time())
self.cm_servers.clear()
CMClient._handle_cm_list(self, msg) # just merges the list CMClient._handle_cm_list(self, msg) # just merges the list
if self.credential_location: if self.credential_location:

Loading…
Cancel
Save