forked from bblanchon/ArduinoJson
Epic refactoring in progress...
This commit is contained in:
@ -142,7 +142,8 @@ JsonObject JsonParser::parseObject() {
|
||||
const char *key = parseString();
|
||||
if (!key) return NULL;
|
||||
|
||||
skip(':')
|
||||
if (!skip(':'))
|
||||
return NULL;
|
||||
|
||||
JsonValue value = object[key];
|
||||
|
||||
|
Reference in New Issue
Block a user