Skip to content

Commit 6a0b190

Browse files
committed
Fix Unassigned Terms
1 parent 9b84f6c commit 6a0b190

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Flow.Launcher.Plugin/Query.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ public Query(string rawQuery, string search, string[] terms, string[] searchTerm
1616
{
1717
Search = search;
1818
RawQuery = rawQuery;
19+
#pragma warning disable 618 Legacy Support
20+
Terms = terms;
21+
#pragma warning restore 618
1922
SearchTerms = searchTerms;
2023
ActionKeyword = actionKeyword;
2124
}
@@ -38,7 +41,7 @@ public Query(string rawQuery, string search, string[] terms, string[] searchTerm
3841
/// The search string split into a string array.
3942
/// </summary>
4043
public string[] SearchTerms { get; init; }
41-
44+
4245
/// <summary>
4346
/// The raw query split into a string array
4447
/// </summary>
@@ -56,7 +59,7 @@ public Query(string rawQuery, string search, string[] terms, string[] searchTerm
5659
/// User can set multiple action keywords seperated by ';'
5760
/// </summary>
5861
public const string ActionKeywordSeparator = ";";
59-
62+
6063
[Obsolete("Typo")]
6164
public const string ActionKeywordSeperater = ActionKeywordSeparator;
6265

0 commit comments

Comments
 (0)