File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -213,9 +213,9 @@ void OpenWeatherMapClient::updateWeather() {
213213
214214 weatherClient.stop (); // stop client
215215
216- // TODO: check: does this fit the "unautorized access" reply ?
216+ // prudancy check: incomplete message ?
217217 if (int len = measureJson (jdoc) <= 150 ) {
218- Serial.println (F (" Error Does not look like we got the data. Size: " ) + String (len));
218+ Serial.println (F (" Error incomplete message, size " ) + String (len));
219219 errorMsg = F (" Error: " ) + jdoc[F (" message" )].as <String>();
220220 Serial.println (errorMsg);
221221 if (++dataGetRetryCount > dataGetRetryCountError) isValid = false ;
Original file line number Diff line number Diff line change 2323
2424#include " Settings.h"
2525
26- #define VERSION " 3.1.46 "
26+ #define VERSION " 3.1.47 "
2727
2828// Refresh main web page every x seconds. The mainpage has button to activate its auto-refresh
2929#define WEBPAGE_AUTOREFRESH 30
You can’t perform that action at this time.
0 commit comments