vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit 515c84d74dbd3dad2353e34ab18f9300075d5cc3
parent f72efa899e0a2a8adde595842a70698e471a1d3a
Author: Daniel GarcĂ­a <dani-garcia@users.noreply.github.com>
Date:   Tue, 12 Jun 2018 18:01:11 +0200

Fixed casing issue

Diffstat:
Msrc/api/core/ciphers.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/api/core/ciphers.rs b/src/api/core/ciphers.rs @@ -227,7 +227,7 @@ fn copy_values(from: &Value, to: &mut Value) { fn _process_key(key: &str) -> String { match key.to_lowercase().as_ref() { "ssn" => "SSN".into(), - key => util::upcase_first(key) + _ => util::upcase_first(key) } }