We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 204bb60 commit c85f875Copy full SHA for c85f875
krpc/krpc-core/src/commonMain/kotlin/kotlinx/rpc/krpc/internal/KrpcReceiveHandler.kt
@@ -113,7 +113,9 @@ internal class KrpcStoringReceiveHandler(
113
serviceId = message.serviceId,
114
)
115
116
- this@KrpcStoringReceiveHandler.sender.sendMessage(callException)
+ this@KrpcStoringReceiveHandler.sender.sendMessageChecked(callException) {
117
+ // ignore, call was already closed
118
+ }
119
}
120
121
buffer.close(e)
0 commit comments