Browse Source

Fixes incorrect packet type for binary payloads with the msgpack serializer (Fixes #811)

pull/812/head
Tolga Tarhan 3 years ago
parent
commit
dee9e82f75
  1. 8
      src/socketio/msgpack_packet.py

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

Loading…
Cancel
Save