Fix: Force pull images in deploy workflow
All checks were successful
Build and Push / build-all (push) Successful in 7m30s
All checks were successful
Build and Push / build-all (push) Successful in 7m30s
This commit is contained in:
parent
7f56f19e94
commit
0bb461498e
7 changed files with 104 additions and 23 deletions
|
|
@ -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 => ({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue