mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2024-11-12 22:12:40 +01:00
Remove unnecessary test and rewrite match
This commit is contained in:
parent
f43d329e22
commit
3b537f70ac
@ -352,15 +352,12 @@ fn post_cipher_share(uuid: String, data: Json<ShareCipherData>, headers: Headers
|
||||
let data: ShareCipherData = data.into_inner();
|
||||
|
||||
let mut cipher = match Cipher::find_by_uuid(&uuid, &conn) {
|
||||
Some(cipher) => match cipher.uuid == uuid {
|
||||
true => {
|
||||
if cipher.is_write_accessible_to_user(&headers.user.uuid, &conn) {
|
||||
cipher
|
||||
} else {
|
||||
err!("Cipher is not write accessible")
|
||||
}
|
||||
},
|
||||
false => err!("Wrong Cipher id provided")
|
||||
Some(cipher) => {
|
||||
if cipher.is_write_accessible_to_user(&headers.user.uuid, &conn) {
|
||||
cipher
|
||||
} else {
|
||||
err!("Cipher is not write accessible")
|
||||
}
|
||||
},
|
||||
None => err!("Cipher doesn't exist")
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user