mirror of
https://github.com/ilya-zlobintsev/LACT.git
synced 2026-08-17 16:34:54 -05:00
fix: dont show service setup dialog on tcp connections
This commit is contained in:
+1
-1
@@ -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(),
|
||||
|
||||
Reference in New Issue
Block a user