Skip to content
Snippets Groups Projects
Commit 21419e02 authored by Timon's avatar Timon
Browse files

Merge branch 'marvino-main-patch-92375' into 'main'

make sure timestamp is in UTC, else web app will throw an error

See merge request flow3r/api!4
parents 5ce5c6fa 352b6fb2
No related branches found
No related tags found
No related merge requests found
......@@ -571,7 +571,7 @@ func (s *server) handleApps(w http.ResponseWriter, r *http.Request) {
}
resp := res{
DT: time.Now(),
DT: time.Now().UTC(),
}
for _, a := range apps {
if a.appInfo == nil {
......@@ -639,7 +639,7 @@ func (s *server) handleAppShame(w http.ResponseWriter, r *http.Request) {
}
resp := res{
DT: time.Now(),
DT: time.Now().UTC(),
}
for _, shame := range appShame {
// Guarenteed to be exactly 2 parts because of the regex
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment