Prevent invalid date error
This commit is contained in:
parent
9bcf326987
commit
b6e57156db
2 changed files with 2 additions and 2 deletions
|
@ -110,5 +110,5 @@ function Seek() {
|
||||||
|
|
||||||
initializeVideo()
|
initializeVideo()
|
||||||
}
|
}
|
||||||
Seek()
|
setTimeout(() => {Seek()}, 1000) // Prevent invalid date error
|
||||||
</script>
|
</script>
|
|
@ -92,7 +92,7 @@ import './Styles/Iconoir.css'
|
||||||
:
|
:
|
||||||
<Controls Subtitles={Subtitles} ShowBackAndForward={ShowBackAndForward} PlayerName={PlayerName} Live={Live}/>
|
<Controls Subtitles={Subtitles} ShowBackAndForward={ShowBackAndForward} PlayerName={PlayerName} Live={Live}/>
|
||||||
}
|
}
|
||||||
<Controller PlayerName={PlayerName} BigPlayButton={BigPlayButton}/>
|
<Controller PlayerName={PlayerName} BigPlayButton={BigPlayButton} ShowBackAndForward={ShowBackAndForward}/>
|
||||||
<Seek PlayerName={PlayerName}/>
|
<Seek PlayerName={PlayerName}/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue