Using now isEnteringTanDone
This commit is contained in:
parent
8cc2f3bdcd
commit
b32cf94e25
|
@ -384,7 +384,7 @@ open class FinTsJobExecutor(
|
||||||
|
|
||||||
context.callback.enterTan(tanChallenge)
|
context.callback.enterTan(tanChallenge)
|
||||||
|
|
||||||
while (tanChallenge.enterTanResult == null) {
|
while (tanChallenge.isEnteringTanDone == false) {
|
||||||
delay(250)
|
delay(250)
|
||||||
|
|
||||||
mayRetrieveAutomaticallyIfUserEnteredDecoupledTan(context, tanChallenge, tanResponse)
|
mayRetrieveAutomaticallyIfUserEnteredDecoupledTan(context, tanChallenge, tanResponse)
|
||||||
|
@ -393,7 +393,6 @@ open class FinTsJobExecutor(
|
||||||
}
|
}
|
||||||
|
|
||||||
val enteredTanResult = tanChallenge.enterTanResult!!
|
val enteredTanResult = tanChallenge.enterTanResult!!
|
||||||
// }
|
|
||||||
|
|
||||||
return handleEnterTanResult(context, enteredTanResult, tanResponse, response)
|
return handleEnterTanResult(context, enteredTanResult, tanResponse, response)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue