From ad68e2048d1fa0a44f5ff8ea52f71bd03cc8b8ff Mon Sep 17 00:00:00 2001 From: Daniel James Smith Date: Wed, 8 Feb 2023 15:23:07 +0100 Subject: [PATCH] Fix #3148 recordActivity was only getting called when user-activity in the main window is recognized When using biometrics to unlock, the Windows Hello/TouchID prompt would be focused and no input would be recognised. LastActive would have an old value and the vault would get locked --- apps/desktop/src/app/app.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/desktop/src/app/app.component.ts b/apps/desktop/src/app/app.component.ts index 2f009c9c7a1..e2bd6a77e40 100644 --- a/apps/desktop/src/app/app.component.ts +++ b/apps/desktop/src/app/app.component.ts @@ -156,6 +156,7 @@ export class AppComponent implements OnInit, OnDestroy { switch (message.command) { case "loggedIn": case "unlocked": + this.recordActivity(); this.notificationsService.updateConnection(); this.updateAppMenu(); this.systemService.cancelProcessReload();