mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-04-15 09:51:29 +03:00
fix remote tab tooltip (#12632)
Signed-off-by: 21pages <sunboeasy@gmail.com>
This commit is contained in:
@@ -550,7 +550,7 @@ impl Client {
|
|||||||
connect_futures.push(
|
connect_futures.push(
|
||||||
async move {
|
async move {
|
||||||
let conn = fut.await?;
|
let conn = fut.await?;
|
||||||
Ok((conn, None, "Relay"))
|
Ok((conn, None, if use_ws() { "WebSocket" } else { "Relay" }))
|
||||||
}
|
}
|
||||||
.boxed(),
|
.boxed(),
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user