minor info page updates

* removed core restart reasons (esp restart code is sufficient)
* added time info
* moved repo to last line
This commit is contained in:
Frank
2026-03-11 19:02:29 +01:00
parent 37946a947b
commit 2dedbf469a
2 changed files with 8 additions and 4 deletions

View File

@@ -1227,6 +1227,9 @@ void serializeInfo(JsonObject root)
// end WLEDMM
root[F("uptime")] = millis()/1000 + rolloverMillis*4294967;
char time[48];
getTimeString(time);
root[F("time")] = time;
usermods.addToJsonInfo(root);