Fix Hue Emulation not responding on /resourcelinks, issue #6238

This commit is contained in:
Stephan Hadinger 2019-08-22 19:13:14 +02:00
parent 944cf3877f
commit 993216c8c6
1 changed files with 1 additions and 0 deletions

View File

@ -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);
}