Skip to content

Commit 2b944b8

Browse files
authored
Fixed facebook/google provider strings
Changed from facebook and google to facebook.com and google.com respectively. This is needed for cross platform apps. These strings are now consistent with the [iOS](https://github.com/fullstackreact/react-native-firestack/blob/v3/ios/Firestack/FirestackAuth.m#L444) and [Web](https://firebase.google.com/docs/reference/js/firebase.auth.AuthCredential) code. Docs should be updated too. [Here's my pull request](https://github.com/fullstackreact/react-native-firestack/pull/284/files) for that.
1 parent ef1b18b commit 2b944b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

android/src/main/java/io/fullstack/firestack/auth/FirestackAuth.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,9 @@ public void onComplete(@NonNull Task<AuthResult> task) {
159159

160160
@ReactMethod
161161
public void signInWithProvider(final String provider, final String authToken, final String authSecret, final Callback callback) {
162-
if (provider.equals("facebook")) {
162+
if (provider.equals("facebook.com")) {
163163
this.facebookLogin(authToken, callback);
164-
} else if (provider.equals("google")) {
164+
} else if (provider.equals("google.com")) {
165165
this.googleLogin(authToken, callback);
166166
} else
167167
// TODO

0 commit comments

Comments
 (0)