Skip to content
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.

Commit

Permalink
Fix #139 - Wild card issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jibedoubleve committed Aug 20, 2020
1 parent 96b8424 commit aa6be73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public string Handle(string text, string parameters)
? DoHandle(text, parameters)
: text;

if (Next != null) { return Next.DoHandle(result, parameters); }
if (Next != null) { return Next.Handle(result, parameters); }
else { return result; }
}
}
Expand Down
1 change: 1 addition & 0 deletions src/Probel.Lanceur.Core/ServicesImpl/CommandRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ public ExecutionResult Execute(Alias alias)
else
{
Task.Run(() => Process.Start(alias.FileName));
result = ExecutionResult.SuccessHide;
//var msg = $"Alias '{alias.Name}' does not exist in the database.";
//_log.Warning(msg);
//result = ExecutionResult.Failure(msg);
Expand Down

0 comments on commit aa6be73

Please sign in to comment.