Lasse
Results
2
comments of
Lasse
The size variable is not correct in socketio/protocol.py: ``` _, size, data = data.split(MSG_FRAME, 2) ``` Because this will make the string longer than whats recieved as argument "data": ```...
Okey, I found where the problem is really located.. It's in the socket.io.js on line 140 where the message length is generated. The javascript does not count the message as...