they always forget to remove :21114 for https, so I remove for them

This commit is contained in:
rustdesk
2025-02-18 16:18:41 +08:00
parent 6e305d4865
commit 86b327ee41

View File

@@ -898,7 +898,16 @@ pub fn get_custom_rendezvous_server(custom: String) -> String {
"".to_owned()
}
#[inline]
pub fn get_api_server(api: String, custom: String) -> String {
let res = get_api_server_(api, custom);
if res.starts_with("https") && res.ends_with(":21114") {
return res.replace(":21114", "");
}
res
}
fn get_api_server_(api: String, custom: String) -> String {
#[cfg(windows)]
if let Ok(lic) = crate::platform::windows::get_license_from_exe_name() {
if !lic.api.is_empty() {