summaryrefslogtreecommitdiffstats
path: root/common/maps/params.go
diff options
context:
space:
mode:
Diffstat (limited to 'common/maps/params.go')
-rw-r--r--common/maps/params.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/maps/params.go b/common/maps/params.go
index 1f0856598..5e973051b 100644
--- a/common/maps/params.go
+++ b/common/maps/params.go
@@ -84,7 +84,7 @@ func GetNestedParam(keyStr, separator string, candidates ...Params) (interface{}
}
func GetNestedParamFn(keyStr, separator string, lookupFn func(key string) interface{}) (interface{}, string, map[string]interface{}, error) {
- keySegments := strings.Split(strings.ToLower(keyStr), separator)
+ keySegments := strings.Split(keyStr, separator)
if len(keySegments) == 0 {
return nil, "", nil, nil
}