From b5a47efe8e4642b288714da3f4a4a838de71356c Mon Sep 17 00:00:00 2001 From: rustdesk Date: Thu, 7 Mar 2024 16:33:13 +0800 Subject: [PATCH] remove share rdp from strategy, useless and leading to confusion --- src/hbbs_http/sync.rs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/hbbs_http/sync.rs b/src/hbbs_http/sync.rs index 1a1f7876a..8956cdd67 100644 --- a/src/hbbs_http/sync.rs +++ b/src/hbbs_http/sync.rs @@ -150,23 +150,11 @@ fn handle_config_options(config_options: HashMap) { config_options .iter() .map(|(k, v)| { - if k == "allow-share-rdp" { - // only changes made after installation take effect. - #[cfg(windows)] - if crate::platform::is_installed() { - let current = crate::ui_interface::is_share_rdp(); - let set = v == "Y"; - if current != set { - crate::platform::windows::set_share_rdp(set); - } - } - } else { if v.is_empty() { options.remove(k); } else { options.insert(k.to_string(), v.to_string()); } - } }) .count(); Config::set_options(options);