fullporner & thepornbunny

This commit is contained in:
Simon
2026-05-21 12:17:43 +00:00
committed by ForgeCode
parent 4ad7672ac9
commit 07154d50de
10 changed files with 1343 additions and 14 deletions

View File

@@ -158,7 +158,10 @@ impl Requester {
) -> Result<String, AnyErr> {
let mirror_url = Self::jina_mirror_url(url).ok_or("invalid mirror url")?;
let client = Self::build_client(cookie_jar, user_agent.as_deref());
let mut request = client.get(&mirror_url).version(Version::HTTP_11);
let mut request = client
.get(&mirror_url)
.version(Version::HTTP_11)
.header("X-Return-Format", "html");
if proxy_enabled {
if let Ok(proxy_url) = env::var("BURP_URL") {
let proxy = Proxy::all(&proxy_url)?;