mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-06-22 10:02:20 +00:00
fix ci
This commit is contained in:
parent
414455a8fb
commit
736503df1b
1 changed files with 2 additions and 1 deletions
|
|
@ -2125,7 +2125,8 @@ pub mod server_side {
|
|||
}
|
||||
if let Ok(custom_client_config) = env.get_string(&custom_client_config) {
|
||||
if !custom_client_config.is_empty() {
|
||||
crate::read_custom_client(custom_client_config.into());
|
||||
let custom_client_config: String = custom_client_config.into();
|
||||
crate::read_custom_client(&custom_client_config);
|
||||
}
|
||||
}
|
||||
std::thread::spawn(move || start_server(true));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue