From ebbecb3538963967b86d7ea2b6b6d00e820dbaa2 Mon Sep 17 00:00:00 2001 From: Laurent Garnier Date: Wed, 6 Nov 2024 20:53:25 +0100 Subject: [PATCH] [chromecast] Assign unique id to thing actions Related to #17707 Depends on openhab/openhab-core#4438 Signed-off-by: Laurent Garnier --- .../binding/chromecast/internal/action/ChromecastActions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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..6e8f0b3876baf 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 @@ -57,7 +57,7 @@ public class ChromecastActions implements ThingActions { } } - @RuleAction(label = "@text/playURLTypeActionLabel", description = "@text/playURLTypeActionDescription") + @RuleAction(label = "@text/playURLTypeActionLabel", description = "@text/playURLTypeActionDescription", id = "playURLWithMediaType") public @ActionOutput(name = "result", label = "Success", type = "java.lang.Boolean") Boolean playURL( @ActionInput(name = "url") @Nullable String url, @ActionInput(name = "mediaType") @Nullable String mediaType) {