* Use class instead of classname

This commit is contained in:
Michaël Van Canneyt 2023-11-25 10:41:33 +01:00
parent 55deb8cb43
commit e78a4d3899

View File

@ -333,7 +333,7 @@ begin
Result := TJSONObject.Create;
try
Result.Add('method', aMethodName);
Result.Add('classname', aClassName);
Result.Add('class', aClassName);
Result.Add('jsonrpc','2.0');
// In case of notification, do not send an ID
if Not (IsNotification and (rcoNotifications in Options)) then