Skip to content

Commit a44ece7

Browse files
jonsimantova-maurice
authored andcommitted
Fix a bad Java error code name in Firebase Auth Android.
PiperOrigin-RevId: 249330321
1 parent 257ff76 commit a44ece7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

auth/src/android/common_android.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616

1717
#include "auth/src/android/common_android.h"
18+
1819
#include "app/src/log.h"
1920

2021
namespace firebase {
@@ -73,7 +74,7 @@ static const ErrorCodeMapping kRecentLoginCodes[] = {
7374
{nullptr},
7475
};
7576
static const ErrorCodeMapping kUserCollisionCodes[] = {
76-
{"ERROR_ACCOUNT_EXISTS_WITH_DIFFERENT_CREDENTIALS",
77+
{"ERROR_ACCOUNT_EXISTS_WITH_DIFFERENT_CREDENTIAL",
7778
kAuthErrorAccountExistsWithDifferentCredentials},
7879
{"ERROR_CREDENTIAL_ALREADY_IN_USE", kAuthErrorCredentialAlreadyInUse},
7980
{"ERROR_EMAIL_ALREADY_IN_USE", kAuthErrorEmailAlreadyInUse},

0 commit comments

Comments
 (0)