mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-20 14:52:13 +00:00
starting time applied to load video action
This commit is contained in:
parent
7af190a981
commit
59851b4e73
1 changed files with 5 additions and 1 deletions
|
|
@ -138,7 +138,11 @@ const Player = ({ urlParams }) => {
|
|||
commandArgs: {
|
||||
stream: player.selected.stream,
|
||||
streamingServerUrl: settings.streaming_server_url,
|
||||
autoplay: true
|
||||
autoplay: true,
|
||||
time: player.lib_item !== null && player.selected.video_id !== null && player.lib_item.state.video_id === player.selected.video_id ?
|
||||
player.lib_item.state.timeOffset
|
||||
:
|
||||
0
|
||||
}
|
||||
});
|
||||
if (Array.isArray(player.selected.stream.subtitles)) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue