Merge pull request #6281 from s-hadinger/fix_6238

Fix Hue Emulation not responding on /resourcelinks, issue #6238
This commit is contained in:
Theo Arends 2019-08-22 21:16:19 +02:00 committed by GitHub
commit 3fe57e0841
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);
}