Signed-off-by: Jan N. Klug <jan.n.klug@rub.de>
pull/9427/head
J-N-K 2020-12-18 23:08:09 +01:00 committed by GitHub
parent 2e1c56ef76
commit 0b5f9efb26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ public class GroupThingHandler extends DeconzBaseThingHandler {
if (command instanceof StringType) {
String sceneId = scenes.get(command.toString());
if (sceneId != null) {
sendCommand(null, command, channelUID, "scene/" + sceneId + "/recall", null);
sendCommand(null, command, channelUID, "scenes/" + sceneId + "/recall", null);
} else {
logger.debug("Ignoring command {} for {}, scene is not found in available scenes: {}", command,
channelUID, scenes);