1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

Prevent reloading browser extension when using biometric (#230)

This commit is contained in:
Oscar Hinton
2020-12-16 22:07:15 +01:00
committed by GitHub
parent 697e755c0f
commit f9042408f4

View File

@@ -19,7 +19,7 @@ export class SystemService implements SystemServiceAbstraction {
}
startProcessReload(): void {
if (this.vaultTimeoutService.pinProtectedKey != null || this.reloadInterval != null) {
if (this.vaultTimeoutService.pinProtectedKey != null || this.vaultTimeoutService.biometricLocked || this.reloadInterval != null) {
return;
}
this.cancelProcessReload();