mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
change backslash to fowardslash for lastpass import
This commit is contained in:
@@ -68,6 +68,9 @@ export class LastPassCsvImporter extends BaseImporter implements Importer {
|
|||||||
if (addFolder) {
|
if (addFolder) {
|
||||||
const f = new FolderView();
|
const f = new FolderView();
|
||||||
f.name = value.grouping;
|
f.name = value.grouping;
|
||||||
|
if (f.name != null) {
|
||||||
|
f.name = f.name.replace(/\\/g, '/');
|
||||||
|
}
|
||||||
result.folders.push(f);
|
result.folders.push(f);
|
||||||
}
|
}
|
||||||
if (hasFolder) {
|
if (hasFolder) {
|
||||||
|
|||||||
Reference in New Issue
Block a user