change mcp server collection to use webpki roots instead of native, since the native roots do not work on android

This commit is contained in:
2026-05-25 18:02:51 +02:00
parent 0fa4bda949
commit 5100a0ccdb
4 changed files with 22 additions and 3 deletions
+1 -2
View File
@@ -24,8 +24,7 @@ pub(crate) fn get_caldav_client(
password: &str,
) -> AuthorizedCaldavClient {
let https_connector: HttpsConnector<HttpConnector> = HttpsConnectorBuilder::new()
.with_native_roots()
.unwrap()
.with_webpki_roots()
.https_only()
.enable_http1()
.build();