]> source.dussan.org Git - vaadin-framework.git/commitdiff
fixes regression #5092
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Thu, 10 Jun 2010 19:09:23 +0000 (19:09 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Thu, 10 Jun 2010 19:09:23 +0000 (19:09 +0000)
svn changeset:13642/svn branch:6.4

src/com/vaadin/terminal/gwt/client/ApplicationConnection.java

index 449971ac394bff99d7fc9a92e87f4706e23fbfd9..d2c8f6e67c856eb72b2e2e1b82e6824b1f52fe9a 100755 (executable)
@@ -484,6 +484,11 @@ public class ApplicationConnection {
             // Synchronized call, discarded response (leaving the page)
             SynchronousXHR syncXHR = (SynchronousXHR) SynchronousXHR.create();
             syncXHR.synchronousPost(uri + "&" + PARAM_UNLOADBURST + "=1", rd);
+            /*
+             * Although we are in theory leaving the page, the page may still
+             * stay open. End request properly here too. See #3289
+             */
+            endRequest();
         }
     }