mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix secondToEndSearch error
This commit is contained in:
parent
6a0b190120
commit
92c2281def
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ namespace Flow.Launcher.Plugin
|
|||
/// <summary>
|
||||
/// strings from second search (including) to last search
|
||||
/// </summary>
|
||||
public string SecondToEndSearch => _secondToEndSearch ??= string.Join(' ', SearchTerms[1..]);
|
||||
public string SecondToEndSearch => SearchTerms.Length > 1? _secondToEndSearch ??= string.Join(' ', SearchTerms[1..]]) : "";
|
||||
|
||||
/// <summary>
|
||||
/// Return second search split by space if it has
|
||||
|
|
|
|||
Loading…
Reference in a new issue