Fix config sync reconnection retry loop (#13487)

* Updated the server connection retry loop when syncing config changes in src/server.rs to not break after reconnecting.

* Update server.rs

---------

Co-authored-by: RustDesk <71636191+rustdesk@users.noreply.github.com>
This commit is contained in:
Jonathan Gilbert
2025-11-11 10:27:58 -06:00
committed by GitHub
parent fb10069632
commit ce7d794b4c

View File

@@ -705,7 +705,6 @@ async fn sync_and_watch_config_dir() {
Ok(mut _conn) => {
conn = _conn;
log::info!("reconnected to ipc_service");
break;
}
_ => {}
}