fix(desktop): correct NO_PROXY syntax

This commit is contained in:
Brendan Allan
2026-01-22 22:18:08 +08:00
parent 224b2c37d7
commit b776ba6b76

View File

@@ -52,7 +52,7 @@ fn configure_display_backend() -> Option<String> {
}
fn main() {
unsafe { std::env::set_var("NO_PROXY", "no_proxy=127.0.0.1,localhost,::1") };
unsafe { std::env::set_var("NO_PROXY", "127.0.0.1,localhost,::1") };
#[cfg(target_os = "linux")]
{