windows remove "--cm-no-ui", "--cm --hide"

Signed-off-by: 21pages <pages21@163.com>
This commit is contained in:
21pages
2023-09-09 15:23:26 +08:00
parent db0ab2e4a9
commit 55dbcb646b
3 changed files with 5 additions and 1 deletions

View File

@@ -2412,7 +2412,10 @@ async fn start_ipc(
if let Ok(s) = crate::ipc::connect(1000, "_cm").await {
stream = Some(s);
} else {
#[allow(unused_mut)]
#[allow(unused_assignments)]
let mut args = vec!["--cm"];
#[cfg(not(windows))]
if crate::hbbs_http::sync::is_pro() && password::hide_cm() {
args.push("--hide");
}