Updated dependencies, removed some unnecessary clones and fixed some lints

This commit is contained in:
Daniel García
2019-02-20 17:54:18 +01:00
parent bf6ae91a6d
commit 5ee04e31e5
7 changed files with 66 additions and 87 deletions

View File

@@ -608,7 +608,7 @@ fn share_cipher_by_uuid(
None => err!("Invalid collection ID provided"),
Some(collection) => {
if collection.is_writable_by_user(&headers.user.uuid, &conn) {
CollectionCipher::save(&cipher.uuid.clone(), &collection.uuid, &conn)?;
CollectionCipher::save(&cipher.uuid, &collection.uuid, &conn)?;
shared_to_collection = true;
} else {
err!("No rights to modify the collection")