From e45912bfe1ab92c7fcf69a28ca7bfc27fd30adf3 Mon Sep 17 00:00:00 2001 From: HaseenaSainul <41037131+HaseenaSainul@users.noreply.github.com> Date: Tue, 2 Jan 2024 13:52:55 +0530 Subject: [PATCH] JSONRPC: invoke methods including index values (#1483) Co-authored-by: Pierre Wielders --- Source/plugins/JSONRPC.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/plugins/JSONRPC.h b/Source/plugins/JSONRPC.h index 3c50de7db..96c95236a 100644 --- a/Source/plugins/JSONRPC.h +++ b/Source/plugins/JSONRPC.h @@ -611,7 +611,7 @@ namespace PluginHost { } else { Core::JSONRPC::Context context(channelId, id, token); - result = handler->Invoke(context, realMethod, parameters, response); + result = handler->Invoke(context, Core::JSONRPC::Message::FullMethod(method), parameters, response); } } }