From 020c6e2ed2f424f997d0f124f7ae1aabb8a020dc Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sat, 24 Aug 2024 11:43:59 +0200 Subject: feat(watch): Idle until new videos are available instead of exiting --- src/watch/mod.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src/watch/mod.rs') diff --git a/src/watch/mod.rs b/src/watch/mod.rs index 815e208..9eb1c18 100644 --- a/src/watch/mod.rs +++ b/src/watch/mod.rs @@ -77,11 +77,6 @@ pub async fn watch(app: &App) -> Result<()> { play_things.len() ); - // There is nothing to watch - if play_things.len() == 0 { - return Ok(()); - } - let mut playlist_cache: Vec = Vec::with_capacity(play_things.len()); for play_thing in play_things { @@ -100,6 +95,8 @@ pub async fn watch(app: &App) -> Result<()> { let mut mpv_event_handler = MpvEventHandler::from_playlist(playlist_cache); loop { + while mpv_event_handler.check_idle(&app, &mpv).await? {} + if let Some(ev) = ev_ctx.wait_event(600.) { match ev { Ok(event) => { -- cgit 1.4.1