Skip to content

Commit e120382

Browse files
authoredJan 12, 2024
Merge pull request #457 from GitLiveApp/firebase-crashlytics-domain
Fixed issue where crashlytics would put different crashes under the s…
2 parents ba4a8b5 + 0ba025c commit e120382

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)
Failed to load comments.