remove uptime. we show it in 2 places already in the app

This commit is contained in:
proddy
2022-02-07 09:02:17 +01:00
parent 81d54ca69f
commit 74eabba641
2 changed files with 1 additions and 14 deletions

View File

@@ -46,9 +46,6 @@ void NTPStatus::ntpStatus(AsyncWebServerRequest * request) {
// the sntp server name
root["server"] = sntp_getservername(0);
// device uptime in seconds
root["uptime"] = millis() / 1000;
response->setLength();
request->send(response);
}