mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 00:33:44 +00:00
encrypted import for bitwarden json (#220)
This commit is contained in:
@@ -165,12 +165,12 @@ export class ImportService implements ImportServiceAbstraction {
|
||||
}
|
||||
}
|
||||
|
||||
getImporter(format: string, organization = false): Importer {
|
||||
getImporter(format: string, organizationId: string = null): Importer {
|
||||
const importer = this.getImporterInstance(format);
|
||||
if (importer == null) {
|
||||
return null;
|
||||
}
|
||||
importer.organization = organization;
|
||||
importer.organizationId = organizationId;
|
||||
return importer;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user