renamed var

This commit is contained in:
Simon
2025-06-03 11:52:27 +00:00
parent 03e4554131
commit 9399949c36

View File

@@ -47,9 +47,9 @@ impl PerverzijaProvider {
let client = match env::var("BURP_URL").as_deref() {
Ok(url) => reqwest::Client::builder()
Ok(burp_url) => reqwest::Client::builder()
.user_agent("Mozilla/5.0 (iPhone; CPU iPhone OS 14_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/33.0 Mobile/15E148 Safari/605.1.15")
.proxy(Proxy::https(url).unwrap())
.proxy(Proxy::https(burp_url).unwrap())
.danger_accept_invalid_certs(true)
.build()?,
Err(_) => reqwest::Client::builder()