This commit is contained in:
rustdesk 2021-04-29 09:35:23 +08:00
parent 619fba5838
commit 9c22ca4c6e
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# RustDesk | Your Remote Desktop Software # RustDesk | Your Remote Desktop Software
The best open-source remote desktop software, written in Rust. Works out of the box, no configuration required. Great alternative to TeamViewer and AnyDesk! You have full control of your data, with no concerns about security. You can use our rendezvous/relay server, [set up your own](https://rustdesk.com/blog/id-relay-set/), or write your own rendezvous/relay server. The best open-source remote desktop client software, written in Rust. Works out of the box, no configuration required. Great alternative to TeamViewer and AnyDesk! You have full control of your data, with no concerns about security. You can use our rendezvous/relay server, [set up your own](https://rustdesk.com/blog/id-relay-set/), or write your own rendezvous/relay server.
[**BINARY DOWNLOAD**](https://github.com/rustdesk/rustdesk/releases) [**BINARY DOWNLOAD**](https://github.com/rustdesk/rustdesk/releases)

View File

@ -437,7 +437,7 @@ impl Connection {
try_activate_screen(); try_activate_screen();
match super::video_service::get_displays() { match super::video_service::get_displays() {
Err(err) => { Err(err) => {
res.set_error(err.to_string()); res.set_error(format!("X11 error: {}", err));
} }
Ok((current, displays)) => { Ok((current, displays)) => {
pi.displays = displays.into(); pi.displays = displays.into();