Skip to content

Commit e914f44

Browse files
committed
fix double callback issue on facebookLogin
1 parent e03569d commit e914f44

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

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

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -496,12 +496,7 @@ public void onComplete(@NonNull Task<AuthResult> task) {
496496
userExceptionCallback(ex, callback);
497497
}
498498
}
499-
}).addOnFailureListener(new OnFailureListener() {
500-
@Override
501-
public void onFailure(@NonNull Exception ex) {
502-
userExceptionCallback(ex, callback);
503-
}
504-
});
499+
});
505500
}
506501

507502
// Internal helpers

0 commit comments

Comments
 (0)