1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00: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) {