Add TestEvalWithArrayOfValuesAndInvalidIndex

This commit is contained in:
TwinProduction
2021-05-15 22:38:13 -04:00
parent e3038f0e80
commit 57ef931d38
2 changed files with 11 additions and 1 deletions

View File

@ -41,7 +41,7 @@ func extractValue(currentKey string, value interface{}) interface{} {
tmp := strings.SplitN(currentKey, "[", 3)
arrayIndex, err := strconv.Atoi(strings.Replace(tmp[1], "]", "", 1))
if err != nil {
return value
return nil
}
currentKey := tmp[0]
// if currentKey contains only an index (i.e. [0] or 0)