Skip to content

Commit

Permalink
Merge pull request #18 from galunecandrey/main
Browse files Browse the repository at this point in the history
Fix forgotPassword crash on Android
  • Loading branch information
tal-mi authored Sep 29, 2021
2 parents 6563d19 + b5cd87c commit 906880e
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 906880e

Please sign in to comment.