From 2d5f795bfb9839243a7e49d39fd2c0eaa2438ef7 Mon Sep 17 00:00:00 2001 From: lov3b Date: Mon, 6 Mar 2023 07:03:26 +0100 Subject: [PATCH] Fix parsing error when leaving download/offline-mode --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.rs b/src/main.rs index 2c517b9..4b1b7ee 100644 --- a/src/main.rs +++ b/src/main.rs @@ -170,6 +170,7 @@ async fn main() { for to_download in download_selections.iter() { download_m3u8(to_download, None).await; } + continue; } // Save to offlinemode "o" => { @@ -190,6 +191,7 @@ async fn main() { e ) } + continue; } "m" => { let result = unsafe { get_mut_ref(&gm) }.promote_to_online().await;