From dee9e82f753b9d1fd1307395928a40c13559cc17 Mon Sep 17 00:00:00 2001 From: Tolga Tarhan Date: Mon, 25 Oct 2021 20:22:05 -0700 Subject: [PATCH] Fixes incorrect packet type for binary payloads with the msgpack serializer (Fixes #811) --- src/socketio/msgpack_packet.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/socketio/msgpack_packet.py b/src/socketio/msgpack_packet.py index d883b57..5c0d896 100644 --- a/src/socketio/msgpack_packet.py +++ b/src/socketio/msgpack_packet.py @@ -3,6 +3,14 @@ from . import packet class MsgPackPacket(packet.Packet): + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + + if self.packet_type == packet.BINARY_EVENT: + self.packet_type = packet.EVENT + elif self.packet_type == packet.BINARY_ACK: + self.packet_type = packet.ACK + def encode(self): """Encode the packet for transmission.""" return msgpack.dumps(self._to_dict())