diff --git a/bundles/org.openhab.binding.chromecast/src/main/java/org/openhab/binding/chromecast/internal/action/ChromecastActions.java b/bundles/org.openhab.binding.chromecast/src/main/java/org/openhab/binding/chromecast/internal/action/ChromecastActions.java index 7e313aac12006..102288d801ed0 100644 --- a/bundles/org.openhab.binding.chromecast/src/main/java/org/openhab/binding/chromecast/internal/action/ChromecastActions.java +++ b/bundles/org.openhab.binding.chromecast/src/main/java/org/openhab/binding/chromecast/internal/action/ChromecastActions.java @@ -40,7 +40,7 @@ public class ChromecastActions implements ThingActions { private @Nullable ChromecastHandler handler; - @RuleAction(label = "@text/playURLActionLabel", description = "@text/playURLActionDescription") + @RuleAction(label = "@text/playURLActionLabel", description = "@text/playURLActionDescription", id = "playURL1") public @ActionOutput(name = "result", label = "Success", type = "java.lang.Boolean") Boolean playURL( @ActionInput(name = "url") @Nullable String url) { if (url == null) { @@ -57,7 +57,7 @@ public class ChromecastActions implements ThingActions { } } - @RuleAction(label = "@text/playURLTypeActionLabel", description = "@text/playURLTypeActionDescription") + @RuleAction(label = "@text/playURLTypeActionLabel", description = "@text/playURLTypeActionDescription", id = "playURL2") public @ActionOutput(name = "result", label = "Success", type = "java.lang.Boolean") Boolean playURL( @ActionInput(name = "url") @Nullable String url, @ActionInput(name = "mediaType") @Nullable String mediaType) {