Fix: Force pull images in deploy workflow
All checks were successful
Build and Push / build-all (push) Successful in 7m30s

This commit is contained in:
doomtube 2026-01-06 23:56:06 -05:00
parent 7f56f19e94
commit 0bb461498e
7 changed files with 104 additions and 23 deletions

View file

@ -106,6 +106,18 @@ function createWatchSyncStore() {
repeatCount: data.repeatCount || 0,
isRepeating: true
}));
} else if (data.event === 'locked_restart') {
// Locked video loop - restart from beginning
update(state => ({
...state,
playbackState: 'playing',
currentTime: 0,
serverTime: data.serverTime || Date.now(),
currentVideo: data.currentVideo !== undefined ? data.currentVideo : state.currentVideo,
leadIn: true,
repeatCount: 0,
isRepeating: true // Video is looping (locked)
}));
} else if (data.event === 'skip') {
// Skip resets repeat state
update(state => ({