summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-10-26 22:04:53 -0700
committerCorey Hulen <corey@hulen.com>2015-10-26 22:04:53 -0700
commit2b198a8cfc6733049d26bcb73c3f443afcea9e82 (patch)
tree9dca9da8334a5f7b1f642a6fb92bb7874b15a8a6 /web
parent118b7f50d2dd2724386dccc67e1fda3e8a6e173e (diff)
parentaf62f4d57112d35ba9da37216eaed72c18923102 (diff)
downloadchat-2b198a8cfc6733049d26bcb73c3f443afcea9e82.tar.gz
chat-2b198a8cfc6733049d26bcb73c3f443afcea9e82.tar.bz2
chat-2b198a8cfc6733049d26bcb73c3f443afcea9e82.zip
Merge pull request #1178 from mattermost/update-web-socket-help
Update web socket help
Diffstat (limited to 'web')
-rw-r--r--web/react/stores/socket_store.jsx2
-rw-r--r--web/react/utils/client.jsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/web/react/stores/socket_store.jsx b/web/react/stores/socket_store.jsx
index d4b0e62db..4d69a6716 100644
--- a/web/react/stores/socket_store.jsx
+++ b/web/react/stores/socket_store.jsx
@@ -86,7 +86,7 @@ class SocketStoreClass extends EventEmitter {
this.failCount = this.failCount + 1;
- ErrorStore.storeLastError({connErrorCount: this.failCount, message: 'We cannot reach the Mattermost service. The service may be down or misconfigured. Please contact an administrator to make sure the WebSocket port is configured properly.'});
+ ErrorStore.storeLastError({connErrorCount: this.failCount, message: 'Please check connection, Mattermost unreachable. If issue persists, ask administrator to check WebSocket port.'});
ErrorStore.emitChange();
};
diff --git a/web/react/utils/client.jsx b/web/react/utils/client.jsx
index bc73f3c64..a93257dd2 100644
--- a/web/react/utils/client.jsx
+++ b/web/react/utils/client.jsx
@@ -34,7 +34,7 @@ function handleError(methodName, xhr, status, err) {
if (oldError && oldError.connErrorCount) {
errorCount += oldError.connErrorCount;
- connectError = 'We cannot reach the Mattermost service. The service may be down or misconfigured. Please contact an administrator to make sure the WebSocket port is configured properly.';
+ connectError = 'Please check connection, Mattermost unreachable. If issue persists, ask administrator to check WebSocket port.';
}
e = {message: connectError, connErrorCount: errorCount};