From dcea54ab83de0cf55469328a6891f6fd9a7ae340 Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Tue, 26 Nov 2024 19:28:39 +0800 Subject: [PATCH] Fix parameter bug under release mode --- Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs b/Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs index fb2578e6d..6e00b8a27 100644 --- a/Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs +++ b/Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs @@ -64,7 +64,7 @@ namespace Flow.Launcher.Plugin.SharedCommands throw; #else messageBoxExShow(string.Format("Copying path {0} has failed, it will now be deleted for consistency", targetPath)); - RemoveFolderIfExists(targetPath); + RemoveFolderIfExists(targetPath, messageBoxExShow); #endif }