Browse Source

revert logic change in client

pull/341/head
Hexiro 4 years ago
committed by Rossen
parent
commit
22ad89ed27
  1. 3
      steam/client/__init__.py

3
steam/client/__init__.py

@ -297,7 +297,8 @@ class SteamClient(CMClient, BuiltinBase):
""" """
if not self.connected: if not self.connected:
self._LOG.debug("Trying to send message when not connected. (discarded)") self._LOG.debug("Trying to send message when not connected. (discarded)")
elif body_params and isinstance(message, MsgProto): else:
if body_params and isinstance(message, MsgProto):
proto_fill_from_dict(message.body, body_params) proto_fill_from_dict(message.body, body_params)
CMClient.send(self, message) CMClient.send(self, message)

Loading…
Cancel
Save