Skip to content

Commit 9967f6c

Browse files
committed
fixes suggestions when suggestion key is null
1 parent 43c8728 commit 9967f6c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/FlubuCore/Infrastructure/Terminal/FlubuConsole.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,7 @@ private void GetSuggestionFromHints(List<Hint> hintSource, string lastInput, str
744744
}
745745
}
746746

747-
if (hintSourceKey != "*")
747+
if (hintSourceKey != null && hintSourceKey != "*")
748748
{
749749
foreach (var hint in hints)
750750
{

0 commit comments

Comments
 (0)