pimpbunny fix

This commit is contained in:
Simon
2026-03-22 12:27:46 +00:00
parent a2d31d90a1
commit 50ea0e73b7
13 changed files with 646 additions and 140 deletions

View File

@@ -57,10 +57,11 @@ async fn main() -> std::io::Result<()> {
);
let mut requester = util::requester::Requester::new();
requester.set_proxy(env::var("PROXY").unwrap_or("0".to_string()) != "0".to_string());
let proxy_enabled = env::var("PROXY").unwrap_or("0".to_string()) != "0".to_string();
requester.set_proxy(proxy_enabled);
crate::flow_debug!(
"requester initialized proxy_enabled={}",
requester.proxy_enabled()
proxy_enabled
);
let cache: util::cache::VideoCache = crate::util::cache::VideoCache::new()