Closed sbereghici closed 2 years ago
hey @sbereghici
I couldn't reproduce this behavior with the above steps.
Well, pretty strange ...
Which browser and version? Can you test in an incognito window to make sure it's not some interference from extensions and/or scripts?
Which browser and version? Can you test in an incognito window to make sure it's not some interference from extensions and/or scripts?
Chrome v97.0.4692.99 ... I've tried in incognito and it works the same way, playing the old song, also tried with Edge, same result.
Are you using this url or the demo inside the codesandbox? The Web Playback SDK has some issues with iframes
Couldn't replicate this behavior.
Describe the bug If you pause the current playing song, then change the uris, the player continues to play the previous song, not the expected one
To Reproduce Steps to reproduce the behavior:
Expected behavior The song you expect to play, will not play
Additional context The quick fix will be to remove the isPlaying clause from index.tsx:188 const shouldPlay = (changedURIs && isPlaying) || !!(isReady && (autoPlay || playProp)); -> const shouldPlay = changedURIs || !!(isReady && (autoPlay || playProp));