Bug in teleclient.cpp
Posted: Fri Apr 09, 2021 3:16 pm
Hi,
I found an issue when trying to used WIFI in place of 4g.
teleclient.cpp
I had to change it to something like this for it to compile:
I found an issue when trying to used WIFI in place of 4g.
teleclient.cpp
Code: Select all
Serial.println(response);
if (net.code() == 200) {
// successful
lastSyncTime = millis();
rxBytes += bytes;
}
return true;
Code: Select all
Serial.println(response);
if (response) {
// successful
lastSyncTime = millis();
rxBytes += bytes;
}
return true;