From e0b3ce1f7ab030c11912d1df5d13bed4e43e74d4 Mon Sep 17 00:00:00 2001 From: Cromfel Date: Wed, 27 Jul 2022 13:13:25 +0300 Subject: [PATCH] Update msgpack_packet.py Using together with non-python implementations causes issues as the payload is optional. Currently: `self.data = decoded['data']` Should be: `self.data = decoded.get('data')` Reference: https://github.com/miguelgrinberg/python-socketio/blob/d556a0ec4de5ef2ca21626ce8b41d68126ec3605/src/socketio/msgpack_packet.py#L16 Documentation: https://github.com/socketio/socket.io-protocol#packet-format --- src/socketio/msgpack_packet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/socketio/msgpack_packet.py b/src/socketio/msgpack_packet.py index cb6afe8..2746263 100644 --- a/src/socketio/msgpack_packet.py +++ b/src/socketio/msgpack_packet.py @@ -13,6 +13,6 @@ class MsgPackPacket(packet.Packet): """Decode a transmitted package.""" decoded = msgpack.loads(encoded_packet) self.packet_type = decoded['type'] - self.data = decoded['data'] + self.data = decoded.get('data') self.id = decoded.get('id') self.namespace = decoded['nsp']