diff --git a/crates/bitwarden/src/vault/cipher/cipher.rs b/crates/bitwarden/src/vault/cipher/cipher.rs index c32f39c30..49586028d 100644 --- a/crates/bitwarden/src/vault/cipher/cipher.rs +++ b/crates/bitwarden/src/vault/cipher/cipher.rs @@ -44,7 +44,7 @@ pub struct Cipher { pub collection_ids: Vec, pub name: EncString, - pub notes: EncString, + pub notes: Option, pub r#type: CipherType, pub login: Option, @@ -78,7 +78,7 @@ pub struct CipherView { pub collection_ids: Vec, pub name: String, - pub notes: String, + pub notes: Option, pub r#type: CipherType, pub login: Option,