mirror of
https://github.com/stashapp/stash.git
synced 2025-12-07 17:02:38 +01:00
Fix startPosition not honoured
This commit is contained in:
parent
0664c5b974
commit
045ba55def
1 changed files with 2 additions and 1 deletions
|
|
@ -518,8 +518,9 @@ export const ScenePlayer: React.FC<IScenePlayerProps> = ({
|
|||
(interfaceConfig?.autostartVideo ?? false) ||
|
||||
_initialTimestamp > 0;
|
||||
|
||||
var startPositition = _initialTimestamp;
|
||||
let startPositition = _initialTimestamp;
|
||||
if (
|
||||
!startPositition &&
|
||||
!(alwaysStartFromBeginning || sessionInitialised) &&
|
||||
file.duration > scene.resume_time!
|
||||
) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue