We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a0b190 commit 92c2281Copy full SHA for 92c2281
Flow.Launcher.Plugin/Query.cs
@@ -81,7 +81,7 @@ public Query(string rawQuery, string search, string[] terms, string[] searchTerm
81
/// <summary>
82
/// strings from second search (including) to last search
83
/// </summary>
84
- public string SecondToEndSearch => _secondToEndSearch ??= string.Join(' ', SearchTerms[1..]);
+ public string SecondToEndSearch => SearchTerms.Length > 1? _secondToEndSearch ??= string.Join(' ', SearchTerms[1..]]) : "";
85
86
87
/// Return second search split by space if it has
0 commit comments