Skip to content

Commit 57cbe10

Browse files
committed
Fix parameter bug
1 parent b568d2d commit 57cbe10

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/Search/Everything/EverythingDownloadHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public static async Task<string> PromptDownloadIfNotInstallAsync(string installe
5151

5252
installedLocation = "C:\\Program Files\\Everything\\Everything.exe";
5353

54-
FilesFolders.OpenPath(installedLocation, api.ShowMsgBox);
54+
FilesFolders.OpenPath(installedLocation, (string str) => api.ShowMsgBox(str));
5555

5656
return installedLocation;
5757

Plugins/Flow.Launcher.Plugin.Explorer/Search/ResultManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ private static bool IsMedia(string extension)
336336
private static void OpenFile(string filePath, string workingDir = "", bool asAdmin = false)
337337
{
338338
IncrementEverythingRunCounterIfNeeded(filePath);
339-
FilesFolders.OpenFile(filePath, Context.API.ShowMsgBox, workingDir, asAdmin);
339+
FilesFolders.OpenFile(filePath, workingDir, asAdmin, (string str) => Context.API.ShowMsgBox(str));
340340
}
341341

342342
private static void OpenFolder(string folderPath, string fileNameOrFilePath = null)

0 commit comments

Comments
 (0)