Update downloader.rs for Disable SSL checks

This commit is contained in:
Like0x 2022-08-15 10:25:22 +08:00 committed by Esteban Blanc
parent ad4b89d18d
commit 9282b5dee5

View file

@ -64,6 +64,7 @@ impl Downloader {
Downloader {
client: reqwest::blocking::ClientBuilder::new()
.danger_accept_invalid_certs(true)
.cookie_store(true)
.user_agent(user_agent)
.build()