Skip to content

Commit 27a5a33

Browse files
committed
fix double callback issue on sendPasswordResetWithEmail
1 parent 32ed7fd commit 27a5a33

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
@@ -293,12 +293,7 @@ public void onComplete(@NonNull Task<Void> task) {
293293
userExceptionCallback(ex, callback);
294294
}
295295
}
296-
}).addOnFailureListener(new OnFailureListener() {
297-
@Override
298-
public void onFailure(@NonNull Exception ex) {
299-
userExceptionCallback(ex, callback);
300-
}
301-
});
296+
});
302297
}
303298

304299
@ReactMethod

0 commit comments

Comments
 (0)