Skip to content
Merged
Changes from 1 commit
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
Next Next commit
fix(auth, android): remove unecessary error type guarding
  • Loading branch information
Lyokone committed May 22, 2024
commit d1f31960b07a45966a35471b42731617a7b9f198
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,6 @@ static GeneratedAndroidFirebaseAuth.FlutterError parserExceptionToFlutter(
multiFactorException.getErrorCode(), multiFactorException.getLocalizedMessage(), output);
}

if (nativeException instanceof ExecutionException) {
return FlutterFirebaseAuthPluginException.noSuchProvider();
}

if (nativeException instanceof FirebaseNetworkException
|| (nativeException.getCause() != null
Expand Down