Remove JSON parameter from handlers

This commit is contained in:
2026-03-12 17:48:11 -04:00
parent f0c070d4eb
commit 4c6bdae2c2
72 changed files with 72 additions and 72 deletions

View File

@@ -294,7 +294,7 @@ FString UMCPServer::HandleRequest(const FString& Line)
// Invoke the handler.
TStringBuilder<32768> TextResult;
Handler->Handle(&*Request, TextResult);
Handler->Handle(TextResult);
FString Result = TextResult.ToString();
for (int32 i = 0; i < Result.Len(); ++i)
{