mirror of
https://github.com/rustdesk/rustdesk
synced 2026-05-23 08:58:52 +00:00
Update linux.rs
This commit is contained in:
parent
f9d0974fc5
commit
f3f48d3cf4
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ fn get_display_server_of_session(session: &str) -> String {
|
|||
}
|
||||
} else {
|
||||
// loginctl has not given the expected output. try something else.
|
||||
if let OK(sestype) = std::env::var("XDG_SESSION_TYPE") {
|
||||
if let Ok(sestype) = std::env::var("XDG_SESSION_TYPE") {
|
||||
return sestype.to_owned();
|
||||
}
|
||||
// If the session is not a tty, then just return the type as usual
|
||||
|
|
|
|||
Loading…
Reference in a new issue