mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
Fix transcoded video player position (#272)
* Fix transcoded video player position * Abbreviate change
This commit is contained in:
@@ -135,7 +135,8 @@ export class ScenePlayerImpl extends React.Component<IScenePlayerProps, IScenePl
|
||||
};
|
||||
|
||||
getCurrentTimeHook = (_videoTag: any) => {
|
||||
return _videoTag.currentTime + _videoTag.start;
|
||||
let start = _videoTag.start || 0;
|
||||
return _videoTag.currentTime + start;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user