Fixed detection of isStrongAuthenticationRequired

This commit is contained in:
dankl 2019-10-25 23:52:08 +02:00 committed by dankito
parent 826d3cefa2
commit a13fa0dcea
1 changed files with 1 additions and 1 deletions

View File

@ -44,6 +44,6 @@ open class TanResponse(
}
open val isStrongAuthenticationRequired: Boolean
get() = challenge != NoChallengeResponse
get() = challenge != null && challenge != NoChallengeResponse
}