Browse Source

revert logic change in client

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

5
steam/client/__init__.py

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

Loading…
Cancel
Save