We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b884f1 commit f756f04Copy full SHA for f756f04
reactive/kotlinx-coroutines-rx3/src/RxConvert.kt
@@ -84,7 +84,7 @@ public fun <T: Any> ObservableSource<T>.asFlow(): Flow<T> = callbackFlow {
84
override fun onNext(t: T) {
85
try {
86
sendBlocking(t)
87
- } catch (ignored: Exception) { //TODO: Replace when this issue is fixed: https://github.com/Kotlin/kotlinx.coroutines/issues/974
+ } catch (ignored: Throwable) { //TODO: Replace when this issue is fixed: https://github.com/Kotlin/kotlinx.coroutines/issues/974
88
}
89
90
override fun onError(e: Throwable) { close(e) }
0 commit comments