From 993216c8c6ccda4011454c205674265ed01483ae Mon Sep 17 00:00:00 2001 From: Stephan Hadinger Date: Thu, 22 Aug 2019 19:13:14 +0200 Subject: [PATCH] Fix Hue Emulation not responding on /resourcelinks, issue #6238 --- sonoff/xdrv_20_hue.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/sonoff/xdrv_20_hue.ino b/sonoff/xdrv_20_hue.ino index aa260f5f7..87b2f1246 100644 --- a/sonoff/xdrv_20_hue.ino +++ b/sonoff/xdrv_20_hue.ino @@ -719,6 +719,7 @@ void HandleHueApi(String *path) else if (path->endsWith("/sensors")) HueNotImplemented(path); else if (path->endsWith("/scenes")) HueNotImplemented(path); else if (path->endsWith("/rules")) HueNotImplemented(path); + else if (path->endsWith("/resourcelinks")) HueNotImplemented(path); else HueGlobalConfig(path); }