1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-07 04:03:29 +00:00

more string handling fixes

This commit is contained in:
jaasen-livefront
2025-11-07 21:57:33 -08:00
parent 1411ae357a
commit a89a8c60c0

View File

@@ -168,7 +168,7 @@ export class CipherExport {
this.name = safeGetString(o.name) ?? "";
this.notes = safeGetString(o.notes);
if ("key" in o) {
this.key = o.key?.encryptedString ?? "";
this.key = o.key?.encryptedString;
}
this.favorite = o.favorite;