Move GraalVM compilation to SLC
[lgpl/argeo-commons.git] / rcp / org.argeo.cms.ui.rcp / src / org / argeo / cms / ui / rcp / servlet / CmsRcpServlet.java
index d180f195c1be6a342fdd56122a769b3e54a2499b..f8aecd39b996a688daec78bfc1af8de00088439b 100644 (file)
@@ -33,7 +33,7 @@ public class CmsRcpServlet extends HttpServlet {
        protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
                String path = req.getPathInfo();
                String uiName = path != null ? path.substring(path.lastIndexOf('/') + 1) : "";
-               CmsRcpDisplayFactory.openCmsApp(eventAdmin, cmsApp, uiName);
+               CmsRcpDisplayFactory.openCmsApp(eventAdmin, cmsApp, uiName, null);
                logger.log(Level.DEBUG, "Opened RCP UI  " + uiName + " of  CMS App " + req.getServletPath());
        }