We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 286c33f commit ecee47aCopy full SHA for ecee47a
1 file changed
DBAPI.cpp
@@ -220,8 +220,11 @@ DBdeparr* DBAPI::getStationBoard(
220
DeserializationError error = deserializeJson(doc, client);
221
if (error) {
222
DB_DEBUG_MSG("deserializeJson() on departures/arrivals failed");
223
+ DB_DEBUG_MSG("DBAPI: deserializeJson() on departures/arrivals failed");
224
DB_DEBUG_MSG(error.c_str());
- return deparr;
225
+ //return deparr;
226
+ // No data in array, continue with next hour if selected
227
+ continue;
228
}
229
230
uint8_t current_hash[20];
0 commit comments