fix remote tab tooltip (#12632)

Signed-off-by: 21pages <sunboeasy@gmail.com>
This commit is contained in:
21pages
2025-08-12 20:29:48 +08:00
committed by GitHub
parent e7909a0dbd
commit 806351b6c1

View File

@@ -550,7 +550,7 @@ impl Client {
connect_futures.push(
async move {
let conn = fut.await?;
Ok((conn, None, "Relay"))
Ok((conn, None, if use_ws() { "WebSocket" } else { "Relay" }))
}
.boxed(),
);