1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 05:13:29 +00:00

[PM-4077] safeincloud multiple url fix (#6394)

* safeincloud multiple url fix
* Ensure LoginView.uris is consistently populated
This commit is contained in:
bharat
2023-12-14 22:10:51 +05:30
committed by GitHub
parent 00fd45a678
commit 96d1c83385
2 changed files with 4 additions and 4 deletions

View File

@@ -81,7 +81,7 @@ export class SafeInCloudXmlImporter extends BaseImporter implements Importer {
} else if (fieldType === "notes") {
cipher.notes += text + "\n";
} else if (fieldType === "weblogin" || fieldType === "website") {
cipher.login.uris = this.makeUriArray(text);
cipher.login.uris.push(...this.makeUriArray(text));
} else {
this.processKvp(cipher, name, text);
}