commit b51169c4b6ed931b25835eac278c32791663544d parent f8b3e467a435d4fab52926e284f6bd5c3d3385f7 Author: Marc Stibane <marc@taler.net> Date: Mon, 10 Aug 2026 19:06:06 +0200 reduce background time for testing DbStatus to 30 sec Diffstat:
| M | TalerWallet1/Views/Main/MainView.swift | | | 8 | ++++---- |
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/TalerWallet1/Views/Main/MainView.swift b/TalerWallet1/Views/Main/MainView.swift @@ -366,10 +366,10 @@ struct MainView: View { if interval.seconds > 10 { // enough time to paste copied data and return // TODO: add another toggle with snail/hare for 60 sec / 10 sec biometricService.isAuthenticated = false - if interval.seconds > 300 { // 5 minutes - logger.log("More than 5 minutes in background - tell wallet-core") - hintApplicationResumed() - } + } + if interval.seconds > 30 { + logger.log("More than 30 seconds in background - tell wallet-core") + hintApplicationResumed() } } backgrounded = nil