From 6ef74955cfa4b6ed2186d5d4edafcbd4bf7765b8 Mon Sep 17 00:00:00 2001 From: Simon Date: Sat, 19 Jul 2025 08:23:27 +0000 Subject: [PATCH] back to including both urls --- src/providers/pmvhaven.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/pmvhaven.rs b/src/providers/pmvhaven.rs index bf5416a..d683d00 100644 --- a/src/providers/pmvhaven.rs +++ b/src/providers/pmvhaven.rs @@ -201,7 +201,7 @@ impl PmvhavenVideo { self.duration as u32, ) .formats(vec![ - // VideoFormat::new(format!("https://storage.pmvhaven.com/{}/{}_{}.mp4", video_id, encoded_title, video_id), "1080".to_string(), "mp4".to_string()).protocol("https".to_string()), + VideoFormat::new(format!("https://storage.pmvhaven.com/{}/{}_{}.mp4", video_id, encoded_title, video_id), "1080".to_string(), "mp4".to_string()).protocol("https".to_string()), VideoFormat::new(format!("https://storage.pmvhaven.com/{}/264_{}.mp4", video_id, video_id), "1080".to_string(), "mp4".to_string()).protocol("https".to_string()) ])