DecryptActivity: use correct TOTP period (#1359)
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
parent
44d27333a7
commit
f5450eb5fd
1 changed files with 2 additions and 2 deletions
|
@ -190,7 +190,7 @@ class DecryptActivity : BasePgpActivity(), OpenPgpServiceConnection.OnBound {
|
|||
if (entry.hasTotp()) {
|
||||
launch(Dispatchers.IO) {
|
||||
// Calculate the actual remaining time for the first pass
|
||||
// then return to the standard 30 second affair.
|
||||
// then return to the standard rotation.
|
||||
val remainingTime = entry.totpPeriod - (System.currentTimeMillis() % entry.totpPeriod)
|
||||
withContext(Dispatchers.Main) {
|
||||
val code = entry.calculateTotpCode() ?: "Error"
|
||||
|
@ -200,7 +200,7 @@ class DecryptActivity : BasePgpActivity(), OpenPgpServiceConnection.OnBound {
|
|||
repeat(Int.MAX_VALUE) {
|
||||
val code = entry.calculateTotpCode() ?: "Error"
|
||||
withContext(Dispatchers.Main) { adapter.updateOTPCode(code) }
|
||||
delay(30.seconds)
|
||||
delay(entry.totpPeriod.seconds)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue