mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 03:33:54 +00:00
[Key Connector] QA fixes (#410)
* Fix locked vault message if using key connector * Add OTP verification on export * Finish support for OTP on export * Delete unneeded subclass * update deps * Update jslib
This commit is contained in:
@@ -424,7 +424,8 @@ export class VaultProgram extends Program {
|
||||
})
|
||||
.action(async (password, options) => {
|
||||
await this.exitIfLocked();
|
||||
const command = new ExportCommand(this.main.cryptoService, this.main.exportService, this.main.policyService);
|
||||
const command = new ExportCommand(this.main.exportService, this.main.policyService,
|
||||
this.main.keyConnectorService, this.main.userVerificationService);
|
||||
const response = await command.run(password, options);
|
||||
this.processResponse(response);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user