1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 14:23:32 +00:00

ssh agent: fix first start when no .bitwarden-ssh-agent.sock exists (#12356)

Co-authored-by: Bernd Schoolmann <mail@quexten.com>
This commit is contained in:
Icelk
2024-12-12 13:45:37 +01:00
committed by GitHub
parent 645d36f465
commit 617469127a

View File

@@ -65,7 +65,9 @@ impl BitwardenDesktopAgent {
"[SSH Agent Native Module] Could not remove existing socket file: {}",
e
);
return;
if e.kind() != std::io::ErrorKind::NotFound {
return;
}
}
match UnixListener::bind(sockname) {