ursus
08/18/2021, 11:55 AMNon-fatal Exception: kotlinx.coroutines.flow.internal.ChildCancelledException: Child of the scoped flow was cancelled
Non-fatal Exception: kotlinx.coroutines.JobCancellationException: Job was cancelled
and no stacktrace; are there supposed to be ignored?louiscad
08/18/2021, 3:24 PMException
or `Throwable`s in a suspending function.ursus
08/18/2021, 3:33 PMlouiscad
08/18/2021, 3:34 PMCancellationException
subclasses.ursus
08/18/2021, 3:34 PMflatMapLatest
mostlylouiscad
08/18/2021, 3:35 PMMarcelo Hernandez
08/19/2021, 9:10 AMCancellationException
must not be swallowed.ursus
08/19/2021, 11:46 AM.onCompletion { t -> if (t != null) log(t) }
thanks for you help!