From 6843fe0ac49129d6b5af3745e4e9ba701d35471e Mon Sep 17 00:00:00 2001 From: Jack Ye <1160210343@qq.com> Date: Fri, 13 Jun 2025 14:34:39 +0800 Subject: [PATCH] Fix parameter issue Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Flow.Launcher/PublicAPIInstance.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/PublicAPIInstance.cs b/Flow.Launcher/PublicAPIInstance.cs index 591af79b3..4ba8f5a74 100644 --- a/Flow.Launcher/PublicAPIInstance.cs +++ b/Flow.Launcher/PublicAPIInstance.cs @@ -605,7 +605,7 @@ namespace Flow.Launcher FileName = filePath, WorkingDirectory = workingDirectory, Arguments = arguments, - UseShellExecute = true, + UseShellExecute = useShellExecute, Verb = verb, }; Process.Start(info)?.Dispose();