update query defualt to string empty instead of null and update result plugin id to be internal

This commit is contained in:
Amir Tepper
2019-10-17 13:11:23 +03:00
parent e6f17834a0
commit 31916384c1
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ namespace Wox.Plugin
/// <summary> /// <summary>
/// to allow unit tests for plug ins /// to allow unit tests for plug ins
/// </summary> /// </summary>
public Query(string rawQuery, string search, string[] terms, string actionKeyword = null) public Query(string rawQuery, string search, string[] terms, string actionKeyword = "")
{ {
Search = search; Search = search;
RawQuery = rawQuery; RawQuery = rawQuery;

View File

@@ -110,6 +110,6 @@ namespace Wox.Plugin
/// <summary> /// <summary>
/// Plugin ID that generate this result /// Plugin ID that generate this result
/// </summary> /// </summary>
public string PluginID { get; set; } public string PluginID { get; internal set; }
} }
} }