Skip to content
This repository has been archived by the owner on Apr 4, 2023. It is now read-only.

Support for reauthenticating with PHONE #1794

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
Prev Previous commit
Next Next commit
Correct type in error message
corrideat committed Mar 12, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 82569d8613a5e5c28818b85643c7ab3f1672bcf0
2 changes: 1 addition & 1 deletion src/firebase.android.ts
Original file line number Diff line number Diff line change
@@ -1513,7 +1513,7 @@ firebase.reauthenticate = arg => {
}

if (authCredential === null) {
reject("arg.type should be one of LoginType.PASSWORD | firebase.LoginType.PHONE | LoginType.GOOGLE | LoginType.FACEBOOK");
reject("arg.type should be one of LoginType.PASSWORD | LoginType.PHONE | LoginType.GOOGLE | LoginType.FACEBOOK");
return;
}