1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-04 18:53:20 +00:00
This commit is contained in:
neuronull
2025-09-11 16:36:22 -06:00
parent 192ed1890d
commit a8a87f8f4b

View File

@@ -27,10 +27,8 @@ impl BitwardenDesktopAgent {
) -> Result<Self, anyhow::Error> {
let agent_state = BitwardenDesktopAgent::new(auth_request_tx, auth_response_rx);
// let socket_paths = get_socket_paths()?;
let socket_path = get_socket_path()?;
// for sock_path in &socket_paths {
// if the socket is already present and wasn't cleanly removed during a previous
// runtime, remove it before beginning anew.
remove_path(&socket_path)?;
@@ -75,7 +73,6 @@ impl BitwardenDesktopAgent {
return Err(e.into());
}
}
// }
Ok(agent_state)
}