removed proxies

This commit is contained in:
Simon
2025-08-15 18:45:52 +00:00
parent 88f1126ec5
commit 8add6f44aa
7 changed files with 11 additions and 11 deletions

View File

@@ -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?;
}