diff --git a/src/providers/porn00.rs b/src/providers/porn00.rs index 36f0d85..dc065d8 100644 --- a/src/providers/porn00.rs +++ b/src/providers/porn00.rs @@ -83,7 +83,7 @@ impl Porn00Provider { query: &str, ) -> Result> { let search_string = query.to_lowercase().trim().replace(" ", "-"); - let video_url = format!("{}/search/{}?mode=async&function=get_block&block_id=list_videos_videos_list_search_result&q=a&category_ids=&sort_by=&from_videos={}&from_albums={}&", self.url, search_string, page, page); + let video_url = format!("{}/search/{}/?mode=async&function=get_block&block_id=list_videos_videos_list_search_result&q=a&category_ids=&sort_by=&from_videos={}&from_albums={}&", self.url, search_string, page, page); // Check our Video Cache. If the result is younger than 1 hour, we return it. let old_items = match cache.get(&video_url) { Some((time, items)) => { @@ -108,7 +108,7 @@ impl Porn00Provider { if response.status().is_redirection(){ - response = client.get(self.url.clone() + response.headers()["Location"].to_str().unwrap()) + response = client.get(response.headers()["Location"].to_str().unwrap()) // .proxy(proxy.clone()) .send().await?; }