fix windows
This commit is contained in:
parent
7955381655
commit
35e17f0ef9
1 changed files with 2 additions and 2 deletions
|
|
@ -321,7 +321,7 @@ pub fn is_installed() -> bool {
|
|||
|
||||
pub fn is_rdp_service_open() -> bool {
|
||||
#[cfg(windows)]
|
||||
return self.is_installed() && crate::platform::windows::is_rdp_service_open();
|
||||
return is_installed() && crate::platform::windows::is_rdp_service_open();
|
||||
#[cfg(not(windows))]
|
||||
return false;
|
||||
}
|
||||
|
|
@ -657,7 +657,7 @@ pub fn start(args: &mut [String]) {
|
|||
}
|
||||
#[cfg(windows)]
|
||||
if args.len() > 0 && args[0] == "--tray" {
|
||||
let options = check_connect_status(false).1;
|
||||
let options = OPTIONS.clone();
|
||||
crate::tray::start_tray(options);
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue