fix content type

bug5153
This commit is contained in:
Georg Herdt
2020-04-26 06:31:30 +02:00
parent 233f65c2e7
commit afcd958406
@@ -82,6 +82,7 @@ public class ClientConfigurationServlet extends HttpServlet {
final String servletPath = req.getServletPath();
final byte[] cachedPage;
final String pageKey = generateKey(servletPath, deBrandingActive);
resp.setContentType("text/html;charset=UTF-8");
if ((cachedPage = cache.get(pageKey)) != null) {
IOUtils.write(cachedPage, resp.getOutputStream());
} else {