Skip to content

Commit ff48820

Browse files
committed
one more 'TODO' cleared
1 parent 94c3ae1 commit ff48820

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

marquee/OpenWeatherMapClient.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

marquee/marquee.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
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

0 commit comments

Comments
 (0)