mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix a issues that JSONPRCAction could be null.
This commit is contained in:
parent
be33ac3c4f
commit
3634ca624d
1 changed files with 2 additions and 0 deletions
|
|
@ -43,6 +43,8 @@ namespace Wox.PluginLoader
|
|||
JsonRPCResult result1 = result;
|
||||
result.Action = (c) =>
|
||||
{
|
||||
if (result1.JsonRPCAction == null) return false;
|
||||
|
||||
if (!string.IsNullOrEmpty(result1.JsonRPCAction.Method))
|
||||
{
|
||||
if (result1.JsonRPCAction.Method.StartsWith("Wox."))
|
||||
|
|
|
|||
Loading…
Reference in a new issue