Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-16 04:12:53 +01:00
Only construct JSON object if it's useful
Dieser Commit ist enthalten in:
Ursprung
a8138be69b
Commit
9f1240d8d9
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
|
@ -104,7 +104,7 @@ impl Cipher {
|
|||
|
||||
// Get the type_data or a default to an empty json object '{}'.
|
||||
// If not passing an empty object, mobile clients will crash.
|
||||
let mut type_data_json: Value = serde_json::from_str(&self.data).unwrap_or(json!({}));
|
||||
let mut type_data_json: Value = serde_json::from_str(&self.data).unwrap_or_else(|_| json!({}));
|
||||
|
||||
// NOTE: This was marked as *Backwards Compatibilty Code*, but as of January 2021 this is still being used by upstream
|
||||
// Set the first element of the Uris array as Uri, this is needed several (mobile) clients.
|
||||
|
|
Laden …
In neuem Issue referenzieren