소스 검색

* Use class instead of classname

Michaël Van Canneyt 1 년 전
부모
커밋
e78a4d3899
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/fcl-web/src/jsonrpc/fprpcclient.pp

+ 1 - 1
packages/fcl-web/src/jsonrpc/fprpcclient.pp

@@ -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