From 0898131035dfeedc60c3526cb19c3d9669905ab8 Mon Sep 17 00:00:00 2001 From: Hinton Date: Wed, 13 Sep 2023 17:56:10 +0200 Subject: [PATCH] Change cipher notes to be optional --- crates/bitwarden/src/vault/cipher/cipher.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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,