From a4ab014ade53e4e60bda0b9cbce3af9de7eac753 Mon Sep 17 00:00:00 2001 From: Coby Geralnik Date: Wed, 10 Jul 2024 23:13:55 +0300 Subject: [PATCH] Fix bug where secureNotes is empty (#4730) --- src/db/models/cipher.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/db/models/cipher.rs b/src/db/models/cipher.rs index 446749d4..c9b29c9e 100644 --- a/src/db/models/cipher.rs +++ b/src/db/models/cipher.rs @@ -189,9 +189,11 @@ impl Cipher { } } - // Fix secure note issues when data is `{}` + // Fix secure note issues when data is invalid // This breaks at least the native mobile clients - if self.atype == 2 && (self.data.eq("{}") || self.data.to_ascii_lowercase().eq("{\"type\":null}")) { + if self.atype == 2 + && (self.data.is_empty() || self.data.eq("{}") || self.data.to_ascii_lowercase().eq("{\"type\":null}")) + { type_data_json = json!({"type": 0}); }