mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-08-18 01:05:55 +00:00
Merge branch 'development' of github.com:Stremio/stremio-web into development
This commit is contained in:
commit
a606e3fc2b
1 changed files with 4 additions and 1 deletions
|
|
@ -240,7 +240,10 @@ const Player = ({ urlParams, queryParams }) => {
|
|||
[]
|
||||
},
|
||||
autoplay: true,
|
||||
time: player.libraryItem !== null && player.selected.streamRequest !== null && player.libraryItem.state.video_id === player.selected.streamRequest.id ?
|
||||
time: player.libraryItem !== null &&
|
||||
player.selected.streamRequest !== null &&
|
||||
player.selected.streamRequest.path !== null &&
|
||||
player.libraryItem.state.video_id === player.selected.streamRequest.path.id ?
|
||||
player.libraryItem.state.timeOffset
|
||||
:
|
||||
0,
|
||||
|
|
|
|||
Loading…
Reference in a new issue