From d51944d8007fcb2833bbcde994459e8de1593898 Mon Sep 17 00:00:00 2001 From: Ilya Zlobintsev Date: Sun, 2 Aug 2026 12:32:46 +0300 Subject: [PATCH] fix: dont show service setup dialog on tcp connections --- lact-gui/src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lact-gui/src/app.rs b/lact-gui/src/app.rs index ee668b6e..8c93dbdd 100644 --- a/lact-gui/src/app.rs +++ b/lact-gui/src/app.rs @@ -382,7 +382,7 @@ impl AsyncComponent for AppModel { Some(remote_addr) => { info!("establishing connection to {remote_addr}"); match DaemonClient::connect_tcp(&remote_addr).await { - Ok(conn) => (conn, false), + Ok(conn) => (conn, true), Err(err) => { sender.input(AppMsg::Error( anyhow!("TCP connection failed, falling back to local: {err:#}").into(),