You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will cause the code to crash on line 112 of JSONSerializer.swift:
return Message(channelIdentifier: channelIdentifier!, // <<-- there is no "identifier" member in the response, so channelIdentfier will be nil
actionName: messageActionName,
messageType: MessageType.message,
data: messageValue,
error: messageError)
Recommend that the code be fixed to not force-unwrap channelIdentifier and treat the disconnect the same as a reject
The text was updated successfully, but these errors were encountered:
Our rails server occasionally returns the following response
{"type":"disconnect","reason":"unauthorized","reconnect":false}"
This will cause the code to crash on line 112 of JSONSerializer.swift:
Recommend that the code be fixed to not force-unwrap channelIdentifier and treat the disconnect the same as a reject
The text was updated successfully, but these errors were encountered: