diff --git a/Wox.Plugin.SystemPlugins/BaseSystemPlugin.cs b/Wox.Plugin.SystemPlugins/BaseSystemPlugin.cs index 4afa333210..6213fede34 100644 --- a/Wox.Plugin.SystemPlugins/BaseSystemPlugin.cs +++ b/Wox.Plugin.SystemPlugins/BaseSystemPlugin.cs @@ -15,10 +15,13 @@ namespace Wox.Plugin.SystemPlugins { public List Query(Query query) { - if (Enabled) { - if (string.IsNullOrEmpty(query.RawQuery)) return new List(); + if (Enabled && string.IsNullOrEmpty(query.RawQuery)) { + //if (string.IsNullOrEmpty(query.RawQuery)) return new List(); return QueryInternal(query); } + else { + new List(); + } } public void Init(PluginInitContext context) {