Update downloader.rs for Disable SSL checks

This commit is contained in:
Like0x 2022-08-15 10:25:22 +08:00 committed by Esteban Skallwar Blanc
parent ad4b89d18d
commit 85e8ecca62
No known key found for this signature in database
GPG key ID: 33A7AAD719514CB6

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()