Revert "Fix UTF double encoding in file editor" (#2236)

This commit is contained in:
Charles
2026-02-15 11:08:01 -05:00
committed by GitHub
parent 44f6cf8928
commit fdcfbb00ca
3 changed files with 3 additions and 7 deletions

View File

@@ -77,7 +77,7 @@ class FileController extends ClientApiController
->property('file', $request->get('file'))
->log();
return new Response($response, Response::HTTP_OK, ['Content-Type' => 'text/plain; charset=utf-8']);
return new Response($response, Response::HTTP_OK, ['Content-Type' => 'text/plain']);
}
/**