From 486605ff9e362fa31dbfa3a1e7e7e46bcc1e5805 Mon Sep 17 00:00:00 2001
From: fvanroie <15969459+fvanroie@users.noreply.github.com>
Date: Sat, 10 Apr 2021 22:34:06 +0200
Subject: [PATCH] Adjust buildtime timezone
---
src/sys/svc/hasp_http.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/sys/svc/hasp_http.cpp b/src/sys/svc/hasp_http.cpp
index 449864f5..b152474f 100644
--- a/src/sys/svc/hasp_http.cpp
+++ b/src/sys/svc/hasp_http.cpp
@@ -540,7 +540,7 @@ void webHandleInfo()
httpMessage += __DATE__;
httpMessage += F(" ");
httpMessage += __TIME__;
- httpMessage += F(" CET
Uptime: ");
+ httpMessage += F(" UTC
Uptime: "); // Github buildservers are in UTC
unsigned long time = millis() / 1000;
uint16_t day = time / 86400;