mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Merge pull request #2367 from VictoriousRaptor/ignore-extensions
Ignore .lnk target file extension
This commit is contained in:
commit
a5348cc83a
1 changed files with 1 additions and 1 deletions
|
|
@ -313,7 +313,7 @@ namespace Flow.Launcher.Plugin.Program.Programs
|
|||
if (!string.IsNullOrEmpty(target) && File.Exists(target))
|
||||
{
|
||||
program.LnkResolvedPath = Path.GetFullPath(target);
|
||||
program.ExecutableName = Path.GetFileName(target);
|
||||
program.ExecutableName = Path.GetFileNameWithoutExtension(target);
|
||||
|
||||
var args = _helper.arguments;
|
||||
if (!string.IsNullOrEmpty(args))
|
||||
|
|
|
|||
Loading…
Reference in a new issue