We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffcaa02 commit 18e21a8Copy full SHA for 18e21a8
Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs
@@ -91,6 +91,8 @@ private List<Result> ParseResults(JsonRPCQueryResponseModel queryResponseModel)
91
else
92
{
93
string actionReponse = ExecuteCallback(result.JsonRPCAction);
94
+ if (string.IsNullOrEmpty(actionReponse))
95
+ return false;
96
JsonRPCRequestModel jsonRpcRequestModel =
97
JsonSerializer.Deserialize<JsonRPCRequestModel>(actionReponse);
98
if (jsonRpcRequestModel != null
0 commit comments