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 e42ecf3 commit b397be7Copy full SHA for b397be7
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