Skip to content

Commit e16f0e4

Browse files
committed
Fix opening UWP containing folder
1 parent c5720df commit e16f0e4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 6d5b687e240a6abdc5623d8a8e09501f3994b0d3

Plugins/Flow.Launcher.Plugin.Program/Programs/UWP.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ public List<Result> ContextMenus(IPublicAPI api)
326326
{
327327
Main.StartProcess(Process.Start, new ProcessStartInfo(
328328
!string.IsNullOrEmpty(Main._settings.CustomizedExplorer) ? Main._settings.CustomizedExplorer:Settings.Explorer,
329-
$"{Main._settings.CustomizedArgs} \"{Package.Location}\"".Trim()));
329+
Main._settings.CustomizedArgs.Replace("%s",$"\"{Package.Location}\"").Trim()));
330330

331331
return true;
332332
},

0 commit comments

Comments
 (0)