mirror of
https://github.com/bitwarden/browser
synced 2026-02-06 11:43:51 +00:00
[PM-30375] Account for differences in RoboForm Windows desktop app CSV export headers (#18403)
This commit is contained in:
@@ -29,8 +29,9 @@ export class RoboFormCsvImporter extends BaseImporter implements Importer {
|
||||
cipher.notes = this.getValueOrDefault(value.Note);
|
||||
cipher.name = this.getValueOrDefault(value.Name, "--");
|
||||
cipher.login.username = this.getValueOrDefault(value.Login);
|
||||
cipher.login.password = this.getValueOrDefault(value.Pwd);
|
||||
cipher.login.uris = this.makeUriArray(value.Url);
|
||||
cipher.login.password =
|
||||
this.getValueOrDefault(value.Pwd) ?? this.getValueOrDefault(value.Password);
|
||||
cipher.login.uris = this.makeUriArray(value.Url) ?? this.makeUriArray(value.URL);
|
||||
|
||||
if (!this.isNullOrWhitespace(value.Rf_fields)) {
|
||||
this.parseRfFields(cipher, value);
|
||||
|
||||
Reference in New Issue
Block a user