mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 11:16:51 +02:00
Error Fix
This commit is contained in:
@@ -15,10 +15,13 @@ namespace Wox.Plugin.SystemPlugins {
|
||||
|
||||
|
||||
public List<Result> Query(Query query) {
|
||||
if (Enabled) {
|
||||
if (string.IsNullOrEmpty(query.RawQuery)) return new List<Result>();
|
||||
if (Enabled && string.IsNullOrEmpty(query.RawQuery)) {
|
||||
//if (string.IsNullOrEmpty(query.RawQuery)) return new List<Result>();
|
||||
return QueryInternal(query);
|
||||
}
|
||||
else {
|
||||
new List<Result>();
|
||||
}
|
||||
}
|
||||
|
||||
public void Init(PluginInitContext context) {
|
||||
|
||||
Reference in New Issue
Block a user