1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-06-11 13:30:07 +00:00

Fix limitation on sharing ciphers with attachments

This check is several years old, so maybe there was a valid reason
for having it before, but it's not correct anymore.
This commit is contained in:
Jeremy Lin 2021-08-16 22:23:33 -07:00
parent c666497130
commit 56b4f46d7d
2 changed files with 0 additions and 16 deletions

View file

@ -687,12 +687,6 @@ fn put_cipher_share_selected(
};
}
let attachments = Attachment::find_by_ciphers(cipher_ids, &conn);
if !attachments.is_empty() {
err!("Ciphers should not have any attachments.")
}
while let Some(cipher) = data.Ciphers.pop() {
let mut shared_cipher_data = ShareCipherData {
Cipher: cipher,