diff --git a/hammond-downloader/src/downloader.rs b/hammond-downloader/src/downloader.rs index 2176922..3a04db6 100644 --- a/hammond-downloader/src/downloader.rs +++ b/hammond-downloader/src/downloader.rs @@ -51,8 +51,11 @@ fn download_into( attempt.follow() } }); - - let client = reqwest::Client::builder().redirect(policy).referer(false).build()?; + + let client = reqwest::Client::builder() + .redirect(policy) + .referer(false) + .build()?; let mut resp = client.get(url).send()?; info!("Status Resp: {}", resp.status());