We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fd048d commit 6c1c6c2Copy full SHA for 6c1c6c2
plugins/updater/Cargo.toml
@@ -35,6 +35,7 @@ tokio = "1"
35
reqwest = { version = "0.12", default-features = false, features = [
36
"json",
37
"stream",
38
+ "rustls-tls",
39
] }
40
url = { workspace = true }
41
http = "1"
plugins/updater/src/updater.rs
@@ -406,6 +406,7 @@ impl Updater {
406
}
407
408
let response = request
409
+ .use_rustls_tls()
410
.build()?
411
.get(url)
412
.headers(headers.clone())
@@ -568,6 +569,7 @@ impl Update {
568
569
request = configure_client(request);
570
571
572
573
574
.get(self.download_url.clone())
575
.headers(headers)
0 commit comments