From 6085ba0cc2159a5305455f8cb3e7161f7e04134f Mon Sep 17 00:00:00 2001 From: DaRK AnGeL <28630321+masterwishx@users.noreply.github.com> Date: Mon, 16 Mar 2026 09:02:10 +0200 Subject: [PATCH] Add Host header to fetch_trace_ip function --- src/provider.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/provider.rs b/src/provider.rs index 16577f0..d4925af 100644 --- a/src/provider.rs +++ b/src/provider.rs @@ -167,6 +167,7 @@ pub fn parse_trace_ip(body: &str) -> Option { async fn fetch_trace_ip(client: &Client, url: &str, timeout: Duration) -> Option { let resp = client .get(url) + .header("Host", "one.one.one.one") .timeout(timeout) .send() .await