mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
default empty string on description to notes
This commit is contained in:
@@ -33,7 +33,7 @@ export class PassmanJsonImporter extends BaseImporter implements Importer {
|
||||
|
||||
cipher.login.password = this.getValueOrDefault(credential.password);
|
||||
cipher.login.uris = this.makeUriArray(credential.url);
|
||||
cipher.notes += this.getValueOrDefault(credential.description);
|
||||
cipher.notes += this.getValueOrDefault(credential.description, '');
|
||||
if (credential.otp != null) {
|
||||
cipher.login.totp = this.getValueOrDefault(credential.otp.secret);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user