From 67325370d3c6cef463d4211ea86e1f569cd2531b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomislav=20Kopi=C4=87?= Date: Wed, 6 Nov 2024 21:32:48 +0100 Subject: [PATCH] Fix order --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 624993e..3461c47 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -316,8 +316,8 @@ bool fetchWeatherData() { void setup(void) { initSystems(); netman.start(); - timeClient.update(); timeClient.begin(); + timeClient.update(); fetchWeatherData(); }