Browse Source

Don't clone() unused value

pull/17/head
Miroslav Prasil 6 years ago
parent
commit
f43d329e22
  1. 4
      src/api/core/ciphers.rs

4
src/api/core/ciphers.rs

@ -365,9 +365,9 @@ fn post_cipher_share(uuid: String, data: Json<ShareCipherData>, headers: Headers
None => err!("Cipher doesn't exist")
};
match data.cipher.organizationId.clone() {
match data.cipher.organizationId {
None => err!("Organization id not provided"),
Some(org_id) => {
Some(_) => {
update_cipher_from_data(&mut cipher, data.cipher, &headers, true, &conn)?;
for collection in data.collectionIds.iter() {
match Collection::find_by_uuid(&collection, &conn) {

Loading…
Cancel
Save