This commit is contained in:
jpirnay
2026-03-17 21:12:42 +01:00
parent 06f8bbfa36
commit ce0c429dae
3 changed files with 36 additions and 8 deletions
+2 -2
View File
@@ -326,8 +326,8 @@ void CrossPointWebServer::handleStatus() const {
doc["rssi"] = status.rssi;
doc["freeHeap"] = status.freeHeapBytes;
doc["uptime"] = status.uptimeSeconds;
doc["sdTotal"] = Storage.sdTotalBytes();
doc["sdUsed"] = Storage.sdUsedBytes();
doc["sdTotal"] = status.sdTotalBytes;
doc["sdUsed"] = status.sdUsedBytes;
String json;
serializeJson(doc, json);