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