mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-22 06:52:24 +02:00
Fixed prettyPrintTo calling printTo
This commit is contained in:
@ -25,5 +25,5 @@ size_t JsonPrintable::prettyPrintTo(IndentedPrint& p) const
|
||||
size_t JsonPrintable::prettyPrintTo(Print& p) const
|
||||
{
|
||||
IndentedPrint indentedPrint(p);
|
||||
return printTo(indentedPrint);
|
||||
return prettyPrintTo(indentedPrint);
|
||||
}
|
Reference in New Issue
Block a user