[Video] Ensure loop doesn't stop (#5207)
This commit is contained in:
parent
2842f661db
commit
10cdc436b8
1 changed files with 5 additions and 1 deletions
|
@ -110,7 +110,11 @@ function InnerWrapper({embed}: Props) {
|
||||||
if (status === 'error') {
|
if (status === 'error') {
|
||||||
setError(playerError ?? new Error('Unknown player error'))
|
setError(playerError ?? new Error('Unknown player error'))
|
||||||
}
|
}
|
||||||
if (status === 'readyToPlay' && oldStatus !== 'readyToPlay') {
|
if (
|
||||||
|
status === 'readyToPlay' &&
|
||||||
|
oldStatus !== 'readyToPlay' &&
|
||||||
|
oldStatus !== 'waitingToPlayAtSpecifiedRate'
|
||||||
|
) {
|
||||||
player.play()
|
player.play()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue