Skip to content

Commit

Permalink
Fix forgotPassword crash on Android
Browse files Browse the repository at this point in the history
  • Loading branch information
galunecandrey committed Sep 21, 2021
1 parent 6563d19 commit b5cd87c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ class GigyaSDKWrapper<T : GigyaAccount>(application: Application, accountObj: Cl
}
sdk.forgotPassword(loginId, object : GigyaCallback<GigyaApiResponse>() {
override fun onSuccess(p0: GigyaApiResponse?) {
channelResult.success(p0)
channelResult.success(p0?.asMap())
}

override fun onError(p0: GigyaError?) {
Expand Down

0 comments on commit b5cd87c

Please sign in to comment.