Fix Unassigned Terms

This commit is contained in:
Kevin Zhang 2021-09-20 21:51:07 -05:00
parent 9b84f6c559
commit 6a0b190120

View file

@ -16,6 +16,9 @@ namespace Flow.Launcher.Plugin
{
Search = search;
RawQuery = rawQuery;
#pragma warning disable 618 Legacy Support
Terms = terms;
#pragma warning restore 618
SearchTerms = searchTerms;
ActionKeyword = actionKeyword;
}
@ -38,7 +41,7 @@ namespace Flow.Launcher.Plugin
/// The search string split into a string array.
/// </summary>
public string[] SearchTerms { get; init; }
/// <summary>
/// The raw query split into a string array
/// </summary>
@ -56,7 +59,7 @@ namespace Flow.Launcher.Plugin
/// User can set multiple action keywords seperated by ';'
/// </summary>
public const string ActionKeywordSeparator = ";";
[Obsolete("Typo")]
public const string ActionKeywordSeperater = ActionKeywordSeparator;