mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Allow plugins return null
This commit is contained in:
parent
9ad424c537
commit
0d95636b0f
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ namespace Wox.Commands
|
|||
{
|
||||
try
|
||||
{
|
||||
List<Result> r = thirdPlugin.Plugin.Query(q);
|
||||
List<Result> r = thirdPlugin.Plugin.Query(q) ?? new List<Result>();
|
||||
r.ForEach(o =>
|
||||
{
|
||||
o.PluginDirectory = thirdPlugin.Metadata.PluginDirecotry;
|
||||
|
|
|
|||
Loading…
Reference in a new issue