MqttClient client length augmented to 60 (was not passing MqttBox tests

This commit is contained in:
hsaturn
2021-03-26 01:59:08 +01:00
parent c706fbcff2
commit 9178aac02c

View File

@@ -296,7 +296,7 @@ if (message.type() != MqttMessage::Type::PingReq && message.type() != MqttMessag
// ClientId // ClientId
message.getString(payload, len); message.getString(payload, len);
debug("client id len=" << len); debug("client id len=" << len);
if (len>30) if (len>60)
{ {
Serial << '('; Serial << '(';
for(int i=0; i<30; i++) for(int i=0; i<30; i++)