We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f3627f commit 90c962fCopy full SHA for 90c962f
example/src/App.tsx
@@ -104,6 +104,8 @@ const RenderListItem = React.memo(
104
105
// Start player when it is a different one!
106
if (currentPlayingRef?.current?.playerKey !== ref?.current?.playerKey) {
107
+ // Because of a bug with the stopAllPlayer, cannot have multiple payers in paused state
108
+ await currentPlayingRef?.current?.stopPlayer();
109
await startNewPlayer();
110
}
111
0 commit comments