ソースを参照

[httpServer] simple change

Exilon 4 年 前
コミット
9893e3febc
1 ファイル変更1 行追加1 行削除
  1. 1 1
      Quick.HttpServer.Request.pas

+ 1 - 1
Quick.HttpServer.Request.pas

@@ -143,7 +143,7 @@ implementation
 
 function THttpRequest.ContentAsString: string;
 begin
-  if fContent <> nil then Result := StreamToString2(fContent,TEncoding.UTF8);
+  if fContent <> nil then Result := StreamToString(fContent,TEncoding.UTF8);
 end;
 
 constructor THttpRequest.Create;