increase maximum MQTT password length to 40

This commit is contained in:
technyon
2025-05-05 05:43:16 +02:00
parent 2f960a8372
commit de78b651c3
3 changed files with 2 additions and 3 deletions

View File

@@ -144,7 +144,7 @@ private:
int64_t _nextReconnect = 0;
char _mqttBrokerAddr[101] = {0};
char _mqttUser[31] = {0};
char _mqttPass[31] = {0};
char _mqttPass[41] = {0};
char _maintenancePathPrefix[181] = {0};
int _networkTimeout = 0;
std::vector<MqttReceiver*> _mqttReceivers;