Fix issue with json path when expected path doesn't match actual path

This commit is contained in:
TwinProduction 2020-07-24 13:20:28 -04:00
parent 60e30da7e5
commit 98221626d3

View File

@ -52,6 +52,9 @@ func extractValue(currentKey string, value interface{}) interface{} {
}
return nil
}
if value == nil || value.(map[string]interface{})[currentKey] == nil {
return nil
}
// if currentKey contains both a key and an index (i.e. data[0])
array := value.(map[string]interface{})[currentKey].([]interface{})
if len(array) > arrayIndex {