Sub ast_NewText(Text As String) 'this is fired when a complete packet comes from server to the ios app (waits for EOL char to determine that).
process_message(Text)
End Sub
Error occurred on line: 28 (AsyncStreamsText)
Error decoding data as string.
So - I'm using AsyncStreamsText, a remote application is sending text packet. The same exact code works fine, and the É is displayed in the android app.
In iOS it crashes. process_message is just a sub where I break apart the text packet but that doesn't fire as I believe things crash as soon as ast_newtext is raised....