Browse Source

Remove null char stripping from chat message text (#121)

The strings are no longer null terminated
pull/129/head
LBLZR_ 8 years ago
committed by Rossen Georgiev
parent
commit
7e80a3d40b
  1. 2
      steam/client/builtins/user.py

2
steam/client/builtins/user.py

@ -32,7 +32,7 @@ class User(object):
def __handle_message_incoming(self, msg):
if msg.body.chat_entry_type == EChatEntryType.ChatMsg:
user = self.get_user(msg.body.steamid_from)
self.emit("chat_message", user, msg.body.message[:-1].decode('utf-8'))
self.emit("chat_message", user, msg.body.message.decode('utf-8'))
def __handle_disconnect(self):
self.user = None

Loading…
Cancel
Save