iOS Question AsyncStreamText

joergb

Member
Licensed User
Longtime User
Hello,

under ios 13.3 the client doesn't fire the astream.new_text event, even though the server sends the message.

we looked in the source and changed the following statement in the astreams_NewDate Prcedure:

B4X:
old:    If Buffer.Length <= 0 Or Buffer.Length > 255 Then return

new:  If Buffer.Length <= 0 Then  return

because we received a Message with a Length of 265 Byte and in the old version, these message was ignored.
now it works and it seems that the removal of the limit of 256 doesn't matter.

Am I right or will this crash soon ?
 
Top