From c1bb875abd7fd89e44d6ab21bf9137401fad02d8 Mon Sep 17 00:00:00 2001 From: Adrian Scillato <39969427+ascillato2@users.noreply.github.com> Date: Mon, 16 Dec 2019 14:37:18 -0300 Subject: [PATCH] Fix typo --- tasmota/xdrv_20_hue.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/xdrv_20_hue.ino b/tasmota/xdrv_20_hue.ino index 973499a1f..1d13ee263 100644 --- a/tasmota/xdrv_20_hue.ino +++ b/tasmota/xdrv_20_hue.ino @@ -366,7 +366,7 @@ void HueLightStatus1(uint8_t device, String *response) bool HueActive(uint8_t device) { if (device > MAX_FRIENDLYNAMES) { device = MAX_FRIENDLYNAMES; } // return '$' != Settings.friendlyname[device-1][0]; - return '$' != *SettingsText(SET_FRIENDLYNAME1 +device -1]; + return '$' != *SettingsText(SET_FRIENDLYNAME1 +device -1); } void HueLightStatus2(uint8_t device, String *response)