Browse Source

relay: mqttGroupSync is no longer bool

rules-rpn
Max Prokhorov 5 years ago
committed by GitHub
parent
commit
1507c9e5d5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      code/espurna/relay.ino

+ 1
- 1
code/espurna/relay.ino View File

@ -660,7 +660,7 @@ void _relayWebSocketSendRelays() {
#if MQTT_SUPPORT #if MQTT_SUPPORT
group.add(getSetting("mqttGroup", i, "")); group.add(getSetting("mqttGroup", i, ""));
group_sync.add(getSetting("mqttGroupSync", i, 0).toInt() == 1);
group_sync.add(getSetting("mqttGroupSync", i, 0).toInt());
on_disconnect.add(getSetting("relayOnDisc", i, 0).toInt()); on_disconnect.add(getSetting("relayOnDisc", i, 0).toInt());
#endif #endif
} }


Loading…
Cancel
Save