Skip to content

Commit 0ba025c

Browse files
committed
Fixed issue where crashlytics would put different crashes under the same crash
1 parent ba4a8b5 commit 0ba025c

File tree

1 file changed

+1
-1
lines changed
  • firebase-crashlytics/src/iosMain/kotlin/dev/gitlive/firebase/crashlytics

1 file changed

+1
-1
lines changed

firebase-crashlytics/src/iosMain/kotlin/dev/gitlive/firebase/crashlytics/crashlytics.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ private fun Throwable.asNSError(): NSError {
4343
if (message != null) {
4444
userInfo[NSLocalizedDescriptionKey] = message
4545
}
46-
return NSError.errorWithDomain("KotlinException", 0, userInfo)
46+
return NSError.errorWithDomain(this::class.qualifiedName, 0, userInfo)
4747
}

0 commit comments

Comments
 (0)