Add Current endpoint
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Kekskurse 2022-01-14 23:17:44 +01:00
parent 016cda5beb
commit f78cd5e614
Signed by: kekskurse
GPG Key ID: 728ACCB59341E7E4
1 changed files with 3 additions and 2 deletions

View File

@ -52,7 +52,8 @@ func runHttpServer() {
w.Write([]byte("Doing "+lastEvent.Name+" since "+lastEvent.EventTimestamp.Format(time.RFC3339)+"<br>"))
w.Write([]byte("<h3>Today</h3>"))
for tag, _ := range currentState {
i := currentState[tag][time.Now().Format("02.01.06")]
i := currentState[tag][time.Now().Format("02.01.06")
i = i / 60
s := strconv.FormatInt(i, 10)
line := tag+": "+s+"<br>"
w.Write([]byte(line))
@ -66,7 +67,7 @@ func runHttpServer() {
secounds := currentState[tag][t.Format("02.01.06")]
gi = gi + secounds
}
gi = gi / 60
s := strconv.FormatInt(gi, 10)
line := tag+": "+s+"<br>"
w.Write([]byte(line))