From 8add6f44aa6807cc7e3b2170a73b90e2ef7e7a1e Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 15 Aug 2025 18:45:52 +0000 Subject: [PATCH] removed proxies --- src/providers/homoxxx.rs | 4 ++-- src/providers/okporn.rs | 2 +- src/providers/okxxx.rs | 4 ++-- src/providers/perfectgirls.rs | 4 ++-- src/providers/pornhat.rs | 4 ++-- src/providers/pornhub.rs | 2 +- src/providers/redtube.rs | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/providers/homoxxx.rs b/src/providers/homoxxx.rs index aea8072..faf8c04 100644 --- a/src/providers/homoxxx.rs +++ b/src/providers/homoxxx.rs @@ -64,7 +64,7 @@ impl HomoxxxProvider { if response.status().is_redirection(){ println!("Redirection detected, following to: {}", response.headers()["Location"].to_str().unwrap()); response = client.get(response.headers()["Location"].to_str().unwrap()) - .proxy(proxy) + // .proxy(proxy) .send().await?; } if response.status().is_success() { @@ -144,7 +144,7 @@ impl HomoxxxProvider { if response.status().is_redirection(){ response = client.get(self.url.clone() + response.headers()["Location"].to_str().unwrap()) - .proxy(proxy) + // .proxy(proxy) .send().await?; } diff --git a/src/providers/okporn.rs b/src/providers/okporn.rs index 0ad075c..d9ca5d0 100644 --- a/src/providers/okporn.rs +++ b/src/providers/okporn.rs @@ -142,7 +142,7 @@ impl OkpornProvider { if response.status().is_redirection(){ response = client.get(self.url.clone() + response.headers()["Location"].to_str().unwrap()) - .proxy(proxy) + // .proxy(proxy) .send().await?; } diff --git a/src/providers/okxxx.rs b/src/providers/okxxx.rs index 89c2e0f..d100c98 100644 --- a/src/providers/okxxx.rs +++ b/src/providers/okxxx.rs @@ -64,7 +64,7 @@ impl OkxxxProvider { if response.status().is_redirection(){ println!("Redirection detected, following to: {}", response.headers()["Location"].to_str().unwrap()); response = client.get(response.headers()["Location"].to_str().unwrap()) - .proxy(proxy) + // .proxy(proxy) .send().await?; } if response.status().is_success() { @@ -144,7 +144,7 @@ impl OkxxxProvider { if response.status().is_redirection(){ response = client.get(self.url.clone() + response.headers()["Location"].to_str().unwrap()) - .proxy(proxy) + // .proxy(proxy) .send().await?; } diff --git a/src/providers/perfectgirls.rs b/src/providers/perfectgirls.rs index 05268e5..4341c8e 100644 --- a/src/providers/perfectgirls.rs +++ b/src/providers/perfectgirls.rs @@ -66,7 +66,7 @@ impl PerfectgirlsProvider { if response.status().is_redirection(){ println!("Redirection detected, following to: {}", response.headers()["Location"].to_str().unwrap()); response = client.get(response.headers()["Location"].to_str().unwrap()) - .proxy(proxy) + // .proxy(proxy) .send().await?; } if response.status().is_success() { @@ -146,7 +146,7 @@ impl PerfectgirlsProvider { if response.status().is_redirection(){ response = client.get(self.url.clone() + response.headers()["Location"].to_str().unwrap()) - .proxy(proxy) + // .proxy(proxy) .send().await?; } diff --git a/src/providers/pornhat.rs b/src/providers/pornhat.rs index c628e13..ba2ce45 100644 --- a/src/providers/pornhat.rs +++ b/src/providers/pornhat.rs @@ -66,7 +66,7 @@ impl PornhatProvider { if response.status().is_redirection(){ println!("Redirection detected, following to: {}", response.headers()["Location"].to_str().unwrap()); response = client.get(response.headers()["Location"].to_str().unwrap()) - .proxy(proxy) + // .proxy(proxy) .send().await?; } if response.status().is_success() { @@ -146,7 +146,7 @@ impl PornhatProvider { if response.status().is_redirection(){ response = client.get(self.url.clone() + response.headers()["Location"].to_str().unwrap()) - .proxy(proxy) + // .proxy(proxy) .send().await?; } diff --git a/src/providers/pornhub.rs b/src/providers/pornhub.rs index d3dd228..6dbe12a 100644 --- a/src/providers/pornhub.rs +++ b/src/providers/pornhub.rs @@ -168,7 +168,7 @@ impl PornhubProvider { if response.status().is_redirection(){ response = client.get(self.url.clone() + response.headers()["Location"].to_str().unwrap()) - .proxy(proxy) + // .proxy(proxy) .send().await?; } diff --git a/src/providers/redtube.rs b/src/providers/redtube.rs index aebf90b..496f844 100644 --- a/src/providers/redtube.rs +++ b/src/providers/redtube.rs @@ -141,7 +141,7 @@ impl RedtubeProvider { if response.status().is_redirection(){ response = client.get(self.url.clone() + response.headers()["Location"].to_str().unwrap()) - .proxy(proxy) + // .proxy(proxy) .send().await?; }