Skip to content

Commit

Permalink
Fix android module mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisfisher committed Sep 22, 2024
1 parent 2c5024b commit 97c6a78
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public void signIn(String action, String token, Promise promise) {
.signInAsync(action, token)
.thenAcceptAsync(response -> {
if (response.getErrorType() != null) {
promise.reject("signInError", getErrorType());
promise.reject("signInError", response.getErrorType());
} else if (response.getError() != null) {
promise.reject("signInError", response.getError());
} else {
Expand Down

0 comments on commit 97c6a78

Please sign in to comment.