Fix opening UWP containing folder

This commit is contained in:
弘韬 张 2020-11-10 20:47:18 +08:00
parent c5720df769
commit e16f0e4d99
2 changed files with 2 additions and 1 deletions

@ -0,0 +1 @@
Subproject commit 6d5b687e240a6abdc5623d8a8e09501f3994b0d3

View file

@ -326,7 +326,7 @@ namespace Flow.Launcher.Plugin.Program.Programs
{
Main.StartProcess(Process.Start, new ProcessStartInfo(
!string.IsNullOrEmpty(Main._settings.CustomizedExplorer) ? Main._settings.CustomizedExplorer:Settings.Explorer,
$"{Main._settings.CustomizedArgs} \"{Package.Location}\"".Trim()));
Main._settings.CustomizedArgs.Replace("%s",$"\"{Package.Location}\"").Trim()));
return true;
},