From ddcb7f394f33a31be63b4a834d7d7fc1aceb7d94 Mon Sep 17 00:00:00 2001 From: Sebastian Krzyszkowiak Date: Fri, 17 Sep 2021 07:34:30 +0200 Subject: [PATCH] updateNTP: Fix swapped "too fast"/"too slow" messages Fixes #115 --- src/ezTime.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ezTime.cpp b/src/ezTime.cpp index 78d4399..9cb3547 100644 --- a/src/ezTime.cpp +++ b/src/ezTime.cpp @@ -391,9 +391,9 @@ namespace ezt { } else { info(String(abs(correction))); if (correction > 0) { - infoln(F(" ms fast)")); - } else { infoln(F(" ms slow)")); + } else { + infoln(F(" ms fast)")); } } } else {