chore: optimize lock

This commit is contained in:
huzibaca 2024-10-01 00:27:08 +08:00
parent 3cbcd4630c
commit 0b8f24a92e
No known key found for this signature in database
GPG Key ID: D4364EE4851DC302

View File

@ -339,18 +339,10 @@ impl Sysopt {
/// read config from file directly
pub fn guard_proxy(&self) {
use tokio::time::{sleep, Duration};
let guard_state = self.guard_state.clone();
tauri::async_runtime::spawn(async move {
// if it is running, exit
let mut state = guard_state.lock().await;
if *state {
return;
}
*state = true;
drop(state);
let _ = guard_state.lock().await;
// default duration is 10s
let mut wait_secs = 10u64;
@ -402,10 +394,6 @@ impl Sysopt {
log_err!(sysproxy.set_system_proxy());
}
}
let mut state = guard_state.lock().await;
*state = false;
drop(state);
});
}
}