diff --git a/src/main.rs b/src/main.rs index b72847c..bc6033b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -72,7 +72,7 @@ async fn get_url(url: String) -> (String, Result) { debug!("Running {}", url); let resp = CLIENT .get(&url) - .header(header::ACCEPT, "text/html") + .header(header::ACCEPT, "text/html, */*;q=0.8") .send() .await; match resp {