Sonos Save / Restore with spotify does not work

Hi!

Doing save / saveall / Restore / Restoreall does not work for me when playing spotify.
For Tunnelin it works. I have seen bugs for this on github, but it’s supposed to work in OH2.
Anyone got it working?

My code looks like this:

Items:

String SonosMasterbedroomSave       "RINCON_000E5875B88401400"    (SonosSave)       { channel="sonos:PLAY3:RINCON_000E5875B88401400:save" }
String SonosMasterbedroomRestore    "RINCON_000E5875B88401400"    (SonosRestore)    { channel="sonos:PLAY3:RINCON_000E5875B88401400:restore" }
String SonosMasterbedroomUri        "RINCON_000E5875B88401400"    (SonosUri)        { channel="sonos:PLAY3:RINCON_000E5875B88401400:playuri" }
```

```   
SonosMasterbedroomSave.sendCommand(ON)
Thread::sleep(5000)
SonosMasterbedroomVolume.sendCommand(40)
SonosMasterbedroomUri.sendCommand("http://10.1.1.1/voice/message.wav")
Thread::sleep(5000)
SonosMasterbedroomRestore.sendCommand(ON)
```

Regards, S