mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 19:53:43 +00:00
padlock importer. move relationships to arrays
This commit is contained in:
@@ -51,7 +51,7 @@ export class SafeInCloudXmlImporter extends BaseImporter implements Importer {
|
||||
if (labelIdEl != null) {
|
||||
const labelId = labelIdEl.textContent;
|
||||
if (!this.isNullOrWhitespace(labelId) && foldersMap.has(labelId)) {
|
||||
result.folderRelationships.set(result.ciphers.length, foldersMap.get(labelId));
|
||||
result.folderRelationships.push([result.ciphers.length, foldersMap.get(labelId)]);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user