From 148f9c12310ce1845596a45b7e218ea2d20f0ab6 Mon Sep 17 00:00:00 2001 From: Thomas Rohloff Date: Fri, 23 Jun 2023 07:15:17 +0200 Subject: [PATCH] Change NTP server Signed-off-by: Thomas Rohloff --- source/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/main.cpp b/source/main.cpp index 4f0d9a5..8ab4f53 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -164,7 +164,7 @@ OSTime NTPGetTime(const char* hostname) } void updateTime() { - OSTime time = NTPGetTime("time.windows.com"); // Connect to the time server. + OSTime time = NTPGetTime("pool.ntp.org"); // Connect to the time server. if (time == 0) { return; // Probably didn't connect correctly. @@ -295,4 +295,4 @@ WUPS_CONFIG_CLOSED() { } WUPS_CloseStorage(); // Save all changes. -} \ No newline at end of file +}