mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
update query defualt to string empty instead of null and update result plugin id to be internal
This commit is contained in:
parent
e6f17834a0
commit
31916384c1
2 changed files with 2 additions and 2 deletions
|
|
@ -11,7 +11,7 @@ namespace Wox.Plugin
|
|||
/// <summary>
|
||||
/// to allow unit tests for plug ins
|
||||
/// </summary>
|
||||
public Query(string rawQuery, string search, string[] terms, string actionKeyword = null)
|
||||
public Query(string rawQuery, string search, string[] terms, string actionKeyword = "")
|
||||
{
|
||||
Search = search;
|
||||
RawQuery = rawQuery;
|
||||
|
|
|
|||
|
|
@ -110,6 +110,6 @@ namespace Wox.Plugin
|
|||
/// <summary>
|
||||
/// Plugin ID that generate this result
|
||||
/// </summary>
|
||||
public string PluginID { get; set; }
|
||||
public string PluginID { get; internal set; }
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue