Fixed detection of isStrongAuthenticationRequired
This commit is contained in:
parent
826d3cefa2
commit
a13fa0dcea
|
@ -44,6 +44,6 @@ open class TanResponse(
|
|||
}
|
||||
|
||||
open val isStrongAuthenticationRequired: Boolean
|
||||
get() = challenge != NoChallengeResponse
|
||||
get() = challenge != null && challenge != NoChallengeResponse
|
||||
|
||||
}
|
Loading…
Reference in New Issue