diff --git a/Wox.Core/Plugin/JsonPRCModel.cs b/Wox.Core/Plugin/JsonPRCModel.cs index a6e40e02ce..e513f3d307 100644 --- a/Wox.Core/Plugin/JsonPRCModel.cs +++ b/Wox.Core/Plugin/JsonPRCModel.cs @@ -100,6 +100,11 @@ namespace Wox.Core.Plugin /// public class JsonRPCServerRequestModel : JsonRPCRequestModel { + public override string ToString() + { + string rpc = base.ToString(); + return rpc + "}"; + } } ///