From 11c8c1a48fe8c540972161488bd8b902e0c1bd31 Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 22 Dec 2025 12:25:09 +0000 Subject: [PATCH] ignore doodstream.com --- src/providers/sxyprn.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/sxyprn.rs b/src/providers/sxyprn.rs index 96f93bf..478ee22 100644 --- a/src/providers/sxyprn.rs +++ b/src/providers/sxyprn.rs @@ -264,7 +264,7 @@ impl SxyprnProvider { .to_string(); url }) - .filter(|url| url.starts_with("http") && !url.starts_with("https://bigwarp.io/")) + .filter(|url| url.starts_with("http") && !url.starts_with("https://bigwarp.io/") && !url.starts_with("https://doodstream.com/")) .collect::>(); let video_item_url = match stream_urls.first() { Some(u) => u.clone(),