Skip to content

Commit

Permalink
Merge pull request #25 from jsorgensen-lendio/develop
Browse files Browse the repository at this point in the history
fix for null string error
  • Loading branch information
marktefftech authored Feb 4, 2022
2 parents 491e47a + 4bf9429 commit fe590e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ fun refreshTokens() {
PendingOperation.success(params.toString())
}

override fun onError(e: String, exception: AuthorizationException) {
override fun onError(e: String?, exception: AuthorizationException?) {
PendingOperation.error(Errors.OKTA_OIDC_ERROR, exception.errorDescription)
}
})
Expand Down

0 comments on commit fe590e9

Please sign in to comment.