From fba2fa761488d3d45523fc9f570b51820e607f15 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Tue, 18 Sep 2012 12:49:26 +0300 Subject: [PATCH] Allow browser details request to initialize a new session (#9652) --- server/src/com/vaadin/server/VaadinServlet.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/server/src/com/vaadin/server/VaadinServlet.java b/server/src/com/vaadin/server/VaadinServlet.java index 9372a08e10..fd95852c6a 100644 --- a/server/src/com/vaadin/server/VaadinServlet.java +++ b/server/src/com/vaadin/server/VaadinServlet.java @@ -677,7 +677,10 @@ public class VaadinServlet extends HttpServlet implements Constants { * without using the bootstrap page. */ return true; - + } else if (requestType == RequestType.BROWSER_DETAILS) { + // This is the first request if you are embedding by writing the + // embedding code yourself + return true; } else if (requestType == RequestType.OTHER) { /* * I.e URIs that are not application resources or static (theme) -- 2.39.5