Uncommented code to handle subscription packets...

This commit is contained in:
Lucas Jandrew 2020-02-23 22:44:35 -05:00
parent 5ea3e3ba72
commit 0b8488d9bf
1 changed files with 4 additions and 4 deletions

View File

@ -229,11 +229,11 @@ uint16_t Adafruit_MQTT::processPacketsUntil(uint8_t *buffer, uint8_t waitforpack
if (packetType == waitforpackettype) {
return len;
} else {
// if (packetType == MQTT_CTRL_PUBLISH) {
// handleSubscriptionPacket(len);
// } else {
if (packetType == MQTT_CTRL_PUBLISH) {
handleSubscriptionPacket(len);
} else {
ERROR_PRINTLN(F("Dropped a packet"));
// }
}
}
}
return 0;