Skip to content

Commit b776ba6

Browse files
committed
fix(desktop): correct NO_PROXY syntax
1 parent 224b2c3 commit b776ba6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/desktop/src-tauri/src

packages/desktop/src-tauri/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ fn configure_display_backend() -> Option<String> {
5252
}
5353

5454
fn main() {
55-
unsafe { std::env::set_var("NO_PROXY", "no_proxy=127.0.0.1,localhost,::1") };
55+
unsafe { std::env::set_var("NO_PROXY", "127.0.0.1,localhost,::1") };
5656

5757
#[cfg(target_os = "linux")]
5858
{

0 commit comments

Comments
 (0)