From cb60046ba22893f80e025060694fd9db97d7a61b Mon Sep 17 00:00:00 2001 From: Will Martin Date: Mon, 23 Oct 2023 20:31:51 -0400 Subject: [PATCH] [PM-4510] LP importer disable parseSecureNotesToAccount (#6676) --- .../components/lastpass/lastpass-direct-import.service.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/libs/importer/src/components/lastpass/lastpass-direct-import.service.ts b/libs/importer/src/components/lastpass/lastpass-direct-import.service.ts index 63a59737f6..c3687cda30 100644 --- a/libs/importer/src/components/lastpass/lastpass-direct-import.service.ts +++ b/libs/importer/src/components/lastpass/lastpass-direct-import.service.ts @@ -137,7 +137,9 @@ export class LastPassDirectImportService { includeSharedFolders: boolean ): Promise { const clientInfo = await this.createClientInfo(email); - await this.vault.open(email, password, clientInfo, this.lastPassDirectImportUIService); + await this.vault.open(email, password, clientInfo, this.lastPassDirectImportUIService, { + parseSecureNotesToAccount: false, + }); return this.vault.accountsToExportedCsvString(!includeSharedFolders); } @@ -159,7 +161,9 @@ export class LastPassDirectImportService { federatedUser.username = userState.email; const clientInfo = await this.createClientInfo(federatedUser.username); - await this.vault.openFederated(federatedUser, clientInfo, this.lastPassDirectImportUIService); + await this.vault.openFederated(federatedUser, clientInfo, this.lastPassDirectImportUIService, { + parseSecureNotesToAccount: false, + }); return this.vault.accountsToExportedCsvString(!includeSharedFolders); }