Skip to content

Commit 13f1e41

Browse files
committed
Force environment variables when running on iOS
1 parent ba74cac commit 13f1e41

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

mullvad-api/src/ffi/mod.rs

+4
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ impl FfiClient {
6868
)
6969
})?;
7070

71+
std::env::set_var(crate::env::API_HOST_VAR, &api_hostname);
72+
std::env::set_var(crate::env::API_ADDR_VAR, &addr_str);
73+
std::env::set_var(crate::env::API_FORCE_DIRECT_VAR, "0");
74+
std::env::set_var(crate::env::DISABLE_TLS_VAR, "0");
7175
let mut runtime_builder = tokio::runtime::Builder::new_multi_thread();
7276

7377
runtime_builder.worker_threads(2).enable_all();

0 commit comments

Comments
 (0)