remove extra changes

This commit is contained in:
gebeto 2025-12-23 18:32:31 +02:00
parent 0321022ca8
commit e7f3ac8319

View File

@ -166,6 +166,7 @@ void CrossPointWebServer::handleStatus() const {
json += "\"freeHeap\":" + String(ESP.getFreeHeap()) + ","; json += "\"freeHeap\":" + String(ESP.getFreeHeap()) + ",";
json += "\"uptime\":" + String(millis() / 1000); json += "\"uptime\":" + String(millis() / 1000);
json += "}"; json += "}";
server->send(200, "application/json", json); server->send(200, "application/json", json);
} }