From 6f6893a93aeea83eb42509a9e6503b165b136bda Mon Sep 17 00:00:00 2001 From: Mikayla Maki Date: Tue, 22 Oct 2024 10:33:42 -0700 Subject: [PATCH] Fix reversed prompt in #19533 (#19538) Release Notes: - N/A --- crates/recent_projects/src/ssh_connections.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/recent_projects/src/ssh_connections.rs b/crates/recent_projects/src/ssh_connections.rs index 700c85b31d..7c5d0920cd 100644 --- a/crates/recent_projects/src/ssh_connections.rs +++ b/crates/recent_projects/src/ssh_connections.rs @@ -693,7 +693,7 @@ pub async fn open_ssh_project( })? .await; - if response == Ok(1) { + if response == Ok(0) { continue; } }