diff options
-rw-r--r-- | server/src/com/vaadin/server/VaadinServlet.java | 5 |
1 files changed, 4 insertions, 1 deletions
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) |