Hi! Sometimes I've got this error when receiving a chat message (before the onChatReceived fires, so I can't print it)
Unhandled Exception:
System.Exception: JSON Parse: Quotation marks seems to be messed up.
at SimpleJSON.JSONNode.Parse (System.String aJSON) [0x00000] in <filename unknown>:0
at SimpleJSON.JSON.Parse (System.String aJSON) [0x00000] in <filename unknown>:0
at com.shephertz.app42.gaming.multiplayer.client.WarpClient.OnNotify (com.shephertz.app42.gaming.multiplayer.client.message.WarpNotifyMessage msg) [0x00000] in <filename unknown>:0
at com.shephertz.app42.gaming.multiplayer.client.ClientChannel.handleReceivedBuffer (System.Net.Sockets.SocketAsyncEventArgs e) [0x00000] in <filename unknown>:0
at com.shephertz.app42.gaming.multiplayer.client.ClientChannel.<Receive>m__2 (System.Object s, System.Net.Sockets.SocketAsyncEventArgs e) [0x00000] in <filename unknown>:0
at System.Net.Sockets.SocketAsyncEventArgs.OnCompleted (System.Net.Sockets.SocketAsyncEventArgs e) [0x00000] in <filename unknown>:0
at System.Net.Sockets.SocketAsyncEventArgs.ReceiveCallback (IAsyncResult ares) [0x00000] in <filename unknown>:0
at System.Net.Sockets.SocketAsyncEventArgs.DispatcherCB (IAsyncResult ares) [0x00000] in <filename unknown>:0
The message sent is a simple string, without special characters or something. Every time the crash is coming from a different message, and all the messages are generated with the same function. Also, if I print the message before send it, it is fine.
What can it be? I've got this error in iOS, Android and mono too