Using now isEnteringTanDone

This commit is contained in:
dankito 2024-09-08 20:20:31 +02:00
parent 8cc2f3bdcd
commit b32cf94e25
1 changed files with 7 additions and 8 deletions

View File

@ -384,7 +384,7 @@ open class FinTsJobExecutor(
context.callback.enterTan(tanChallenge)
while (tanChallenge.enterTanResult == null) {
while (tanChallenge.isEnteringTanDone == false) {
delay(250)
mayRetrieveAutomaticallyIfUserEnteredDecoupledTan(context, tanChallenge, tanResponse)
@ -393,7 +393,6 @@ open class FinTsJobExecutor(
}
val enteredTanResult = tanChallenge.enterTanResult!!
// }
return handleEnterTanResult(context, enteredTanResult, tanResponse, response)
}