Skip to content

Commit 9b84f6c

Browse files
committed
fix an issue of joining string
1 parent 8127037 commit 9b84f6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher.Plugin/Query.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public Query(string rawQuery, string search, string[] terms, string[] searchTerm
7878
/// <summary>
7979
/// strings from second search (including) to last search
8080
/// </summary>
81-
public string SecondToEndSearch => _secondToEndSearch ??= string.Join(' ', SearchTerms.AsMemory(2));
81+
public string SecondToEndSearch => _secondToEndSearch ??= string.Join(' ', SearchTerms[1..]);
8282

8383
/// <summary>
8484
/// Return second search split by space if it has

0 commit comments

Comments
 (0)