From 39627fe883feeed2206016bacd92cf0e4580ead6 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sun, 6 Nov 2016 01:45:08 +0200 Subject: [PATCH] ClientChatMsg to encode/decode text correctly related to #51 and #13 --- steam/core/msg.py | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/steam/core/msg.py b/steam/core/msg.py index cefdb39..d755cf0 100644 --- a/steam/core/msg.py +++ b/steam/core/msg.py @@ -422,32 +422,40 @@ class ClientChatMsg: steamIdChatter = 0 steamIdChatRoom = 0 ChatMsgType = 0 - ChatMsg = "" + text = "" def __init__(self, data=None): if data: self.load(data) def serialize(self): - return struct.pack("QQI{}s".format(len(self.ChatMsg)), - self.steamIdChatter, - self.steamIdChatRoom, - self.ChatMsgType, - self.ChatMsg - ) + rbytes = struct.pack("