mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-08 16:59:50 +03:00
minor fix for default mqtt_nestedjson cmd
This commit is contained in:
@@ -1880,7 +1880,7 @@ bool MyESP::_fs_loadConfig() {
|
||||
_mqtt_keepalive = mqtt["keepalive"] | MQTT_KEEPALIVE;
|
||||
_mqtt_retain = mqtt["retain"];
|
||||
_mqtt_qos = mqtt["qos"] | MQTT_QOS;
|
||||
_mqtt_nestedjson = mqtt["nestedjson"] | true; // default to on
|
||||
_mqtt_nestedjson = mqtt["nestedjson"]; // default to on
|
||||
_mqtt_password = strdup(mqtt["password"] | "");
|
||||
_mqtt_base = strdup(mqtt["base"] | MQTT_BASE_DEFAULT);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user