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);