Skip to content

Commit

Permalink
Simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
Hinton committed Mar 14, 2024
1 parent fa1abcf commit 9de626c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bitwarden/src/vault/cipher/login.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ impl KeyDecryptable<SymmetricCryptoKey, LoginView> for Login {
uris: self.uris.decrypt_with_key(key).ok().flatten(),
totp: self.totp.decrypt_with_key(key).ok().flatten(),
autofill_on_page_load: self.autofill_on_page_load,
fido2_credentials: self.fido2_credentials.as_ref().map(|v| v.to_vec()),
fido2_credentials: self.fido2_credentials.clone(),
})
}
}
Expand Down

0 comments on commit 9de626c

Please sign in to comment.