* fix MqTT endless loop #1013
@ -1,5 +1,8 @@
# Development Changes
## 0.7.11 - 2023-07-09
## 0.7.10 - 2023-07-08
@ -13,7 +13,7 @@
//-------------------------------------
#define VERSION_MAJOR 0
#define VERSION_MINOR 7
#define VERSION_PATCH 10
#define VERSION_PATCH 11
typedef struct {
@ -101,8 +101,11 @@ class PubMqttIvData {
mState = SEND_DATA;
else if(mSendTotals)
mState = SEND_TOTALS;
else
else {
mSendList->pop();
mZeroValues = false;
mState = START;
}
void stateSend() {