Samll BF: Eine schließende Klammer zuviel (bei ESP32 compile)

This commit is contained in:
VArt67 2024-03-03 20:15:10 +01:00
parent 802dc21863
commit 864c5f5790

View file

@ -169,7 +169,7 @@ class RestApi {
#ifndef ESP32
DynamicJsonDocument json(ESP.getMaxFreeBlockSize() - 512); // need some memory on heap
#else
DynamicJsonDocument json(12000)); // does this work? I have no ESP32 :-(
DynamicJsonDocument json(12000); // does this work? I have no ESP32 :-(
#endif
DeserializationError err = deserializeJson(json, (const char *)mTmpBuf, mTmpSize);
json.shrinkToFit();