commented out proxies

This commit is contained in:
Simon
2025-08-18 10:07:27 +00:00
parent 0f2983ca15
commit b383a36077
5 changed files with 10 additions and 10 deletions

View File

@@ -59,7 +59,7 @@ impl HomoxxxProvider {
let client = Client::builder().cert_verification(false).emulation(Emulation::Firefox136).build()?;
let mut response = client.get(video_url.clone())
.proxy(proxy.clone())
// .proxy(proxy.clone())
.send().await?;
if response.status().is_redirection(){
println!("Redirection detected, following to: {}", response.headers()["Location"].to_str().unwrap());
@@ -138,7 +138,7 @@ impl HomoxxxProvider {
let client = Client::builder().cert_verification(false).emulation(Emulation::Firefox136).build()?;
let mut response = client.get(video_url.clone())
.proxy(proxy.clone())
// .proxy(proxy.clone())
.send().await?;
if response.status().is_redirection(){