Skip to content

Commit

Permalink
JSONRPC: invoke methods including index values (#1483)
Browse files Browse the repository at this point in the history
Co-authored-by: Pierre Wielders <[email protected]>
  • Loading branch information
HaseenaSainul and pwielders authored Jan 2, 2024
1 parent 5eb2995 commit e45912b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/plugins/JSONRPC.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
}
Expand Down

0 comments on commit e45912b

Please sign in to comment.