Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-16 04:12:53 +01:00
remove overzealous sanity check (#4879)
when cloning an item from an organization to the personal vault the client sends the collection id of the cloned item
Dieser Commit ist enthalten in:
Ursprung
cbdb5657f1
Commit
aaab7f9640
1 geänderte Dateien mit 0 neuen und 4 gelöschten Zeilen
|
@ -287,10 +287,6 @@ async fn post_ciphers_create(
|
||||||
if data.cipher.organization_id.is_some() && data.collection_ids.is_empty() {
|
if data.cipher.organization_id.is_some() && data.collection_ids.is_empty() {
|
||||||
err!("You must select at least one collection.");
|
err!("You must select at least one collection.");
|
||||||
}
|
}
|
||||||
// reverse sanity check to prevent corruptions
|
|
||||||
if !data.collection_ids.is_empty() && data.cipher.organization_id.is_none() {
|
|
||||||
err!("The client has not provided an organization id!");
|
|
||||||
}
|
|
||||||
|
|
||||||
// This check is usually only needed in update_cipher_from_data(), but we
|
// This check is usually only needed in update_cipher_from_data(), but we
|
||||||
// need it here as well to avoid creating an empty cipher in the call to
|
// need it here as well to avoid creating an empty cipher in the call to
|
||||||
|
|
Laden …
In neuem Issue referenzieren