]> git.basschouten.com Git - openhab-addons.git/commitdiff
[volumio] Fixed volumio don't play playlist (#16826) (#16828)
authorChris Wohlbrecht <chris@antisphex.net>
Sun, 2 Jun 2024 08:43:57 +0000 (10:43 +0200)
committerGitHub <noreply@github.com>
Sun, 2 Jun 2024 08:43:57 +0000 (10:43 +0200)
Signed-off-by: Chris Wohlbrecht <chris@antisphex.net>
bundles/org.openhab.binding.volumio/src/main/java/org/openhab/binding/volumio/internal/mapping/VolumioCommands.java

index 9024b8c1346010258de77e9aa0483bed0a545f4a..16bf4add19a9d92d40fa6b73f6aad9380bc1ea56 100644 (file)
@@ -30,7 +30,7 @@ public class VolumioCommands {
 
     /* Player Status */
 
-    public static final String GET_STATE = "get-state";
+    public static final String GET_STATE = "getState";
 
     /* Player Controls */
 
@@ -46,9 +46,9 @@ public class VolumioCommands {
 
     public static final String SEEK = "seek";
 
-    public static final String RANDOM = "set-random";
+    public static final String RANDOM = "setRandom";
 
-    public static final String REPEAT = "set-repeat";
+    public static final String REPEAT = "setRepeat";
 
     /* Search */
 
@@ -64,27 +64,27 @@ public class VolumioCommands {
 
     /* MultiRoom */
 
-    public static final String GET_MULTIROOM_DEVICES = "get-multi-room-devices";
+    public static final String GET_MULTIROOM_DEVICES = "getMultiRoomDevices";
 
     /* Queue */
 
     /**
      * Replace the complete queue and play add/play the delivered entry.
      */
-    public static final String REPLACE_AND_PLAY = "replace-and-play";
+    public static final String REPLACE_AND_PLAY = "replaceAndPlay";
 
     public static final String ADD_PLAY = "addPlay";
 
-    public static final String CLEAR_QUEUE = "clear-queue";
+    public static final String CLEAR_QUEUE = "clearQueue";
 
     /* ... */
     public static final String SHUTDOWN = "shutdown";
 
     public static final String REBOOT = "reboot";
 
-    public static final String PLAY_PLAYLIST = "play-playlist";
+    public static final String PLAY_PLAYLIST = "playPlaylist";
 
-    public static final String PLAY_FAVOURITES = "play-favourites";
+    public static final String PLAY_FAVOURITES = "playFavourites";
 
-    public static final String PLAY_RADIO_FAVOURITES = "play-radio-favourites";
+    public static final String PLAY_RADIO_FAVOURITES = "playRadioFavourites";
 }