diff --git a/Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs b/Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs index 90ab6f010..11d1abb63 100644 --- a/Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs +++ b/Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs @@ -91,6 +91,8 @@ namespace Flow.Launcher.Core.Plugin else { string actionReponse = ExecuteCallback(result.JsonRPCAction); + if (string.IsNullOrEmpty(actionReponse)) + return false; JsonRPCRequestModel jsonRpcRequestModel = JsonSerializer.Deserialize(actionReponse); if (jsonRpcRequestModel != null