Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public open class SentryCoroutineExceptionHandler(private val scopes: IScopes =
override fun handleException(context: CoroutineContext, exception: Throwable) {
val mechanism = Mechanism().apply {
type = "CoroutineExceptionHandler"
isHandled = true
}
// the current thread is not necessarily the one that threw the exception
val error = ExceptionMechanismException(mechanism, exception, Thread.currentThread())
Expand Down
Loading