1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-07-07 12:25:46 +02:00

change backslash to fowardslash for lastpass import

This commit is contained in:
Kyle Spearrin 2019-01-16 12:53:59 -05:00
parent cb7336c0e8
commit 80c0da766e

View File

@ -68,6 +68,9 @@ export class LastPassCsvImporter extends BaseImporter implements Importer {
if (addFolder) {
const f = new FolderView();
f.name = value.grouping;
if (f.name != null) {
f.name = f.name.replace(/\\/g, '/');
}
result.folders.push(f);
}
if (hasFolder) {