From 3ec476379ecc4f237d7fbe58d5b923ccc6508dd9 Mon Sep 17 00:00:00 2001 From: rikuogawa <45323361+link2004@users.noreply.github.com> Date: Mon, 9 Jun 2025 21:09:24 +0900 Subject: [PATCH] Handle cancel when closing confirmation --- src/extension.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extension.ts b/src/extension.ts index e8f5788..992824f 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -377,7 +377,7 @@ export function activate(context: vscode.ExtensionContext) { "Cancel" ); - if (confirm === "Cancel") { + if (confirm !== "Directory and Branch" && confirm !== "Directory Only") { return; }