diff options
Diffstat (limited to 'src/watch')
-rw-r--r-- | src/watch/events.rs | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/watch/events.rs b/src/watch/events.rs index 815ad28..adb35e5 100644 --- a/src/watch/events.rs +++ b/src/watch/events.rs @@ -126,12 +126,17 @@ impl MpvEventHandler { match event { Event::EndFile(r) => match r { EndFileReason::Eof => { - info!("Mpv reached eof of current video. Marking it watched."); + info!("Mpv reached eof of current video. Marking it inactive."); + + self.mark_cvideo_inactive(app).await?; + } + EndFileReason::Stop => { + info!("Mpv stopped current video. Marking it inactive."); + + // TODO: Should we also mark the video watched? <2024-08-21> - self.mark_cvideo_watched(app).await?; self.mark_cvideo_inactive(app).await?; } - EndFileReason::Stop => {} EndFileReason::Quit => { info!("Mpv quit. Exiting playback"); |