mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix a bug with WindowsShellRun
This commit is contained in:
parent
8a6690b6df
commit
356db288ad
1 changed files with 1 additions and 1 deletions
|
|
@ -205,7 +205,7 @@ namespace Wox.Infrastructure
|
|||
// there might be args in that command
|
||||
args = PathGetArgs(cmd);
|
||||
if (args != null)
|
||||
cmd = cmd.Substring(0, cmd.Length - args.Length - 1);
|
||||
cmd = cmd.Substring(0, cmd.Length - args.Length).Trim();
|
||||
}
|
||||
else
|
||||
args = null;
|
||||
|
|
|
|||
Loading…
Reference in a new issue