From b5bc598c0938fd254ca666dd4b0ebdc3dc36d8da Mon Sep 17 00:00:00 2001 From: =?utf8?q?Leif=20=C3=85strand?= Date: Mon, 23 Jun 2014 15:03:29 +0300 Subject: [PATCH] Improve error message for missing sync id (#14065) Change-Id: Iab2ddc31261f198c486b9028249fab9cc2cc06a1 --- client/src/com/vaadin/client/ApplicationConnection.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/com/vaadin/client/ApplicationConnection.java b/client/src/com/vaadin/client/ApplicationConnection.java index 694fc71060..5d696f1ddb 100644 --- a/client/src/com/vaadin/client/ApplicationConnection.java +++ b/client/src/com/vaadin/client/ApplicationConnection.java @@ -66,7 +66,6 @@ import com.google.gwt.user.client.Window.ClosingHandler; import com.google.gwt.user.client.ui.HasWidgets; import com.google.gwt.user.client.ui.Widget; import com.vaadin.client.ApplicationConfiguration.ErrorMessage; -import com.vaadin.client.ApplicationConnection.ApplicationStoppedEvent; import com.vaadin.client.ResourceLoader.ResourceLoadEvent; import com.vaadin.client.ResourceLoader.ResourceLoadListener; import com.vaadin.client.communication.HasJavaScriptConnectorHelper; @@ -1437,7 +1436,8 @@ public class ApplicationConnection implements HasHandlers { lastSeenServerSyncId = syncId; } else { - VConsole.error("Server response didn't contain an id."); + VConsole.error("Server response didn't contain a sync id. " + + "Please verify that the server is up-to-date and that the response data has not been modified in transmission."); } // Handle redirect -- 2.39.5