1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

Unlock using master key from desktop

This commit is contained in:
Hinton
2020-10-19 18:34:40 +02:00
parent a659c86373
commit a3dbf8b65d
2 changed files with 3 additions and 2 deletions

View File

@@ -94,8 +94,9 @@ export class NativeMessagingBackground {
}
if (this.vaultTimeoutService.biometricLocked) {
this.runtimeBackground.processMessage({command: 'unlocked'}, null, null);
this.cryptoService.setKey(new SymmetricCryptoKey(Utils.fromB64ToArray(message.keyB64).buffer));
this.vaultTimeoutService.biometricLocked = false;
this.runtimeBackground.processMessage({command: 'unlocked'}, null, null);
}
break;
default: