mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-05-10 11:20:49 +00:00
fix: correctly start next video from 0
This commit is contained in:
parent
45f8e31f1a
commit
17d823565a
1 changed files with 1 additions and 0 deletions
|
|
@ -650,6 +650,7 @@ const Player = ({ urlParams, queryParams }) => {
|
|||
video.state.paused ? onPlayRequested() : onPauseRequested();
|
||||
break;
|
||||
case 'next-track':
|
||||
video.setTime(0);
|
||||
onNextVideoRequested();
|
||||
break;
|
||||
case 'previous-track':
|
||||
|
|
|
|||
Loading…
Reference in a new issue