Browse Source

Honour build time settings for MQTT on fresh install (#719)

sonoffsc
Xose Pérez 6 years ago
parent
commit
ddb6b02f91
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      code/espurna/mqtt.ino

+ 1
- 2
code/espurna/mqtt.ino View File

@ -703,7 +703,6 @@ void mqttUnsubscribe(const char * topic) {
void mqttEnabled(bool status) { void mqttEnabled(bool status) {
_mqtt_enabled = status; _mqtt_enabled = status;
setSetting("mqttEnabled", status ? 1 : 0);
} }
bool mqttEnabled() { bool mqttEnabled() {
@ -736,7 +735,7 @@ void mqttSetBroker(IPAddress ip, unsigned int port) {
} }
void mqttSetBrokerIfNone(IPAddress ip, unsigned int port) { void mqttSetBrokerIfNone(IPAddress ip, unsigned int port) {
if (!hasSetting("mqttServer")) mqttSetBroker(ip, port);
if (getSetting("mqttServer", MQTT_SERVER).length() == 0) mqttSetBroker(ip, port);
} }
void mqttReset() { void mqttReset() {


Loading…
Cancel
Save