Fix forge format version 1

This commit is contained in:
Jai A
2024-08-17 13:28:00 -07:00
parent 0ae1e40d79
commit 93ae24e707
4 changed files with 11 additions and 12 deletions

View File

@@ -159,7 +159,7 @@ pub async fn download_file(
const RETRIES: u32 = 10;
for attempt in 1..=(RETRIES + 1) {
let result = REQWEST_CLIENT
.get(&url.replace("http://", "https://"))
.get(url.replace("http://", "https://"))
.send()
.await
.and_then(|x| x.error_for_status());