Skip to content

Commit

Permalink
dont wrap in a FirebaseException as this is called internally and exp…
Browse files Browse the repository at this point in the history
…ects the original exception
  • Loading branch information
nbransby committed Jul 29, 2024
1 parent 5fd9650 commit 0548e57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/google/firebase/auth/FirebaseAuth.kt
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ class FirebaseAuth constructor(val app: FirebaseApp) : InternalAuthProvider {
client.newCall(request).enqueue(object : Callback {

override fun onFailure(call: Call, e: IOException) {
source.setException(FirebaseException(e.toString(), e))
source.setException(e)
}

@Throws(IOException::class)
Expand Down

0 comments on commit 0548e57

Please sign in to comment.