diff --git a/java/com.sap.sse.debranding/src/com/sap/sse/debranding/ClientConfigurationServlet.java b/java/com.sap.sse.debranding/src/com/sap/sse/debranding/ClientConfigurationServlet.java index 3aa53f96415..56747e8f729 100644 --- a/java/com.sap.sse.debranding/src/com/sap/sse/debranding/ClientConfigurationServlet.java +++ b/java/com.sap.sse.debranding/src/com/sap/sse/debranding/ClientConfigurationServlet.java @@ -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 {