mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Add check null for event
This commit is contained in:
parent
ac8e042333
commit
b520b26bd0
1 changed files with 2 additions and 2 deletions
|
|
@ -69,7 +69,7 @@ namespace Wox.Plugin.WebSearch
|
||||||
};
|
};
|
||||||
|
|
||||||
results.Add(result);
|
results.Add(result);
|
||||||
ResultsUpdated.Invoke(this, new ResultUpdatedEventArgs
|
ResultsUpdated?.Invoke(this, new ResultUpdatedEventArgs
|
||||||
{
|
{
|
||||||
Results = results,
|
Results = results,
|
||||||
Query = query
|
Query = query
|
||||||
|
|
@ -167,4 +167,4 @@ namespace Wox.Plugin.WebSearch
|
||||||
|
|
||||||
public event ResultUpdatedEventHandler ResultsUpdated;
|
public event ResultUpdatedEventHandler ResultsUpdated;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue