Commit f005f82fe03cb56ebf93982f63411b3bc85cd572

Authored by Dima Landiak
Committed by Andrew Shvayka
1 parent 3e67dc1c

fixed rest json converter to parse json array

... ... @@ -71,7 +71,7 @@ public class RestJsonConverter {
71 71 }
72 72
73 73 private static KvEntry parseValue(String key, JsonNode value) {
74   - if (!value.isObject()) {
  74 + if (!value.isContainerNode()) {
75 75 if (value.isBoolean()) {
76 76 return new BooleanDataEntry(key, value.asBoolean());
77 77 } else if (value.isNumber()) {
... ...