Browse Source

Save the name when updating the cipher data

pull/11/head
Miroslav Prasil 7 years ago
parent
commit
787172116d
  1. 1
      src/api/core/ciphers.rs

1
src/api/core/ciphers.rs

@ -188,6 +188,7 @@ fn update_cipher_from_data(cipher: &mut Cipher, data: CipherData, headers: &Head
// Copy the type data and change the names to the correct case
copy_values(&type_data, &mut values);
cipher.name = data.name;
cipher.data = values.to_string();

Loading…
Cancel
Save