]> git.basschouten.com Git - openhab-addons.git/commitdiff
fix typo (#9417)
authorJ-N-K <J-N-K@users.noreply.github.com>
Fri, 18 Dec 2020 22:08:09 +0000 (23:08 +0100)
committerGitHub <noreply@github.com>
Fri, 18 Dec 2020 22:08:09 +0000 (23:08 +0100)
Signed-off-by: Jan N. Klug <jan.n.klug@rub.de>
bundles/org.openhab.binding.deconz/src/main/java/org/openhab/binding/deconz/internal/handler/GroupThingHandler.java

index b53e09ae6fc8a0b821a6ee133db85dc3ad80c1a5..bc59ebc3f8473ff8d1a1c6a86295f16f248cef70 100644 (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);