Skip to content

Commit a52575c

Browse files
committed
ProcessKiller: do not convert paths to lower-case
for consistency with other plugins
1 parent d0e196c commit a52575c

File tree

1 file changed

+1
-2
lines changed
  • Plugins/Flow.Launcher.Plugin.ProcessKiller

1 file changed

+1
-2
lines changed

Plugins/Flow.Launcher.Plugin.ProcessKiller/Main.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,7 @@ private string GetPath(Process p)
150150
{
151151
try
152152
{
153-
var path = GetProcessFilename(p);
154-
return path.ToLower();
153+
return GetProcessFilename(p);
155154
}
156155
catch
157156
{

0 commit comments

Comments
 (0)