mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2024-11-08 12:02:32 +01:00
Fix bug where secureNotes is empty (#4730)
This commit is contained in:
parent
6fedfceaa9
commit
a4ab014ade
@ -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});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user