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

updates for encrypted export and import (#198)

* react to changes for encrypted import

* support encrypted json export

* default back to csv
This commit is contained in:
Kyle Spearrin
2020-12-08 12:35:37 -05:00
committed by GitHub
parent 16d53b7f6f
commit 30b7b93fab
4 changed files with 7 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ export class ImportCommand {
return Response.badRequest('`filepath` was not provided.');
}
const importer = await this.importService.getImporter(format, false);
const importer = await this.importService.getImporter(format, null);
if (importer === null) {
return Response.badRequest('Proper importer type required.');
}