Index: remoting/webapp/me2mom/remoting.js |
diff --git a/remoting/webapp/me2mom/remoting.js b/remoting/webapp/me2mom/remoting.js |
index acd1d1327eb2368a7be41cc799657ea62aa8249f..91167d9fa70d8fc695de3f05714d0f54bdf29986 100644 |
--- a/remoting/webapp/me2mom/remoting.js |
+++ b/remoting/webapp/me2mom/remoting.js |
@@ -429,7 +429,9 @@ function onClientStateChange_(oldState) { |
showConnectError_(remoting.ClientError.OTHER_ERROR); |
} else { |
remoting.debug.log('Unexpected client plugin state: ' + state); |
- showConnectError_(remoting.ClientError.OTHER_ERROR); |
+ // This should only happen if the web-app and client plugin get out of |
+ // sync, and even then the version check should allow compatibility. |
+ showConnectError_(remoting.ClientError.MISSING_PLUGIN); |
} |
} |