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())