Getting coroutine being cancelled when I trying to...
# ktor
z
Getting coroutine being cancelled when I trying to send message through websocket. Ktor ver: 2.2.4 Client side Android Error: W/System.err: java.util.concurrent.CancellationException: ArrayChannel was cancelled Code:
Copy code
override suspend fun sendMessage(message: String) {
    try {
        webSocketSession?.send(Frame.Text(message))
    } catch (e: Exception) {
        e.printStackTrace()
    }
}