From 515c84d74dbd3dad2353e34ab18f9300075d5cc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa?= Date: Tue, 12 Jun 2018 18:01:11 +0200 Subject: [PATCH] Fixed casing issue --- src/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 index 85c8073f..9cded6d5 100644 --- 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) } }