Skip to content

Commit e03569d

Browse files
committed
fix double callback issue on googleLogin
1 parent 4209f57 commit e03569d

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
@@ -473,12 +473,7 @@ public void onComplete(@NonNull Task<AuthResult> task) {
473473
userExceptionCallback(ex, callback);
474474
}
475475
}
476-
}).addOnFailureListener(new OnFailureListener() {
477-
@Override
478-
public void onFailure(@NonNull Exception ex) {
479-
userExceptionCallback(ex, callback);
480-
}
481-
});
476+
});
482477
}
483478

484479
@ReactMethod

0 commit comments

Comments
 (0)