mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-16 03:52:16 +02:00
Fixed inner object bug
This commit is contained in:
@ -51,6 +51,11 @@ JsonValue JsonObject::operator[](char const* key)
|
||||
return JsonValue(node);
|
||||
}
|
||||
|
||||
bool JsonObject::operator==(JsonObject const& other) const
|
||||
{
|
||||
return _node == other._node;
|
||||
}
|
||||
|
||||
JsonNode* JsonObject::getOrCreateNodeAt(char const* key)
|
||||
{
|
||||
if (!_node || _node->type != JSON_OBJECT) return 0;
|
||||
|
Reference in New Issue
Block a user