Browse Source
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:
d556a0ec4d/src/socketio/msgpack_packet.py (L16)
Documentation:
https://github.com/socketio/socket.io-protocol#packet-format
pull/981/head
committed by
GitHub
1 changed files with 1 additions and 1 deletions
Loading…
Reference in new issue