cipher does not need to be mutable

This commit is contained in:
Miroslav Prasil 2019-02-05 13:52:30 +00:00
parent bd65c4e312
commit 1a5ecd4d4a
1 changed files with 1 additions and 1 deletions

View File

@ -842,7 +842,7 @@ fn move_cipher_selected(data: JsonUpcase<MoveCipherData>, headers: Headers, conn
}
for uuid in data.Ids {
let mut cipher = match Cipher::find_by_uuid(&uuid, &conn) {
let cipher = match Cipher::find_by_uuid(&uuid, &conn) {
Some(cipher) => cipher,
None => err!("Cipher doesn't exist"),
};