Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
afa50b4fca
|
|||
09acd79fe8
|
|||
0f1586393b
|
@ -267,7 +267,7 @@ func cleanKey(key string) string {
|
||||
return -1
|
||||
}
|
||||
|
||||
key = strings.Map(fn, strings.ToUpper(key))
|
||||
key = strings.Trim(strings.Map(fn, strings.ToUpper(key)), "_")
|
||||
return expr.ReplaceAllString(key, "_")
|
||||
}
|
||||
|
||||
@ -302,7 +302,7 @@ func (c *Config) getRawMap(key string, dtype DataType) (empty map[string]cValue)
|
||||
|
||||
if ok {
|
||||
for k, v := range entries {
|
||||
if v.dtype == dtype {
|
||||
if (v.dtype == dtype) && (v.parsed.err == nil) {
|
||||
retval[k] = v.parsed
|
||||
} else {
|
||||
return
|
||||
|
Reference in New Issue
Block a user