From 259106fa137b3ea64d7836711d615d005951d462 Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 1 Oct 2025 10:28:08 +0000 Subject: [PATCH] removed protocol from sxyprn stream format --- src/providers/sxyprn.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/providers/sxyprn.rs b/src/providers/sxyprn.rs index 1f1f23d..e224461 100644 --- a/src/providers/sxyprn.rs +++ b/src/providers/sxyprn.rs @@ -278,7 +278,6 @@ impl SxyprnProvider { let mut formats_vec = vec![]; formats_vec.push( VideoFormat::new(video_url.clone(), "1080".to_string(), "m3u8".to_string()) - .protocol("https".to_string()) .format_id(video_url.clone()) .ext("m3u8".to_string()) .video_ext("m3u8".to_string()) @@ -286,7 +285,6 @@ impl SxyprnProvider { for surl in stream_urls { formats_vec.push( videos::VideoFormat::new(surl.clone(), "1080".to_string(), "m3u8".to_string()) - .protocol("https".to_string()) .format_id(surl) .ext("m3u8".to_string()) .video_ext("m3u8".to_string())