updated wreq emulation

This commit is contained in:
Simon
2026-03-10 16:15:45 +00:00
parent 8b54eeac81
commit 9d7146e705

View File

@@ -44,7 +44,7 @@ impl Requester {
fn build_client(cookie_jar: Arc<Jar>, user_agent: Option<&str>) -> Client {
let mut builder = Client::builder()
.cert_verification(false)
.emulation(Emulation::Firefox136)
.emulation(Emulation::Firefox146)
.cookie_provider(cookie_jar)
.redirect(Policy::default());