Skip to content

Commit

Permalink
Reqwest sometimes fails to request valid URLs. Error -> true
Browse files Browse the repository at this point in the history
  • Loading branch information
lj3954 committed May 30, 2024
1 parent 36c49e5 commit e23470a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quickget_ci/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub async fn all_valid(urls: Vec<String>) -> bool {
.await
.into_iter()
.flatten()
.all(|r| r.unwrap_or(false))
.all(|r| r.unwrap_or(true))
}

static CLIENT: Lazy<Client> = Lazy::new(Client::new);

0 comments on commit e23470a

Please sign in to comment.