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
commit 806351b6c1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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(),
);