Sonos starts playback after playSound even if it was paused before

I am using a play 1 as default sink for oh2 rc1. I’ve configured a rule to playSound on the default sink on certain events. If the sonos is paused it will play the sound and then start my old playlist. I would expect that it plays the playSound-Sound and then pause again.

Anyone else experienced that?

Hi,

I’m having the exact same issue since some weeks in OH 2, probably starting with the update to 2.1. Anyone else has this?

My setup is:

sonos.items

Player Sonos_GF_Living              "Sonos" (gGF_Sonos) { channel="sonos:PLAY5:RINCON_000E588B599001400:control" }
String Sonos_GF_Living_Title    <video> { channel="sonos:PLAY5:RINCON_000E588B599001400:currenttitle" }
String Sonos_GF_Living_Notify   <video> { channel="sonos:PLAY5:RINCON_000E588B599001400:notificationsound" }
Dimmer Sonos_GF_Living_NotifyVol   <video> { channel="sonos:PLAY5:RINCON_000E588B599001400:notificationvolume" }
...

bell.rules

var Timer bellRepeatTimer
rule "Klingel"
when
    Item Bell received command
then
    logDebug("toby", "The bell rang!")

    if (bellRepeatTimer == null) {
        bellRepeatTimer = createTimer(now.plusSeconds(10)) [|
            logDebug("toby", "The bell can ring again")
            bellRepeatTimer = null
        ]
        logDebug("toby", "Sending bell to SONOS")
        sendCommand(Sonos_GF_Living_NotifyVol, 50)
        sendCommand(Sonos_GF_Living_Notify, "http://autopi:8080/static/bell.mp3")

        sendCommand(Sonos_UF_Terrace_NotifyVol, 50)
        sendCommand(Sonos_UF_Terrace_Notify, "http://autopi:8080/static/bell.mp3")

    }
end

Regards,
Toby