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