summaryrefslogtreecommitdiffstats
path: root/webapp/action_creators
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-03-30 10:02:07 -0400
committerChristopher Speller <crspeller@gmail.com>2016-03-30 10:02:07 -0400
commitfcc80818a8afb6f1e2f9974916f02d5fdeb72ec8 (patch)
treebb751cdc9f7ddb987118286746d04ae04cedb98b /webapp/action_creators
parent2e9f5c7cf052cea3db10ec200a6736e6cbc880a3 (diff)
parent6541cfbb0bd898eb995210a6be40b8b86f03b611 (diff)
downloadchat-fcc80818a8afb6f1e2f9974916f02d5fdeb72ec8.tar.gz
chat-fcc80818a8afb6f1e2f9974916f02d5fdeb72ec8.tar.bz2
chat-fcc80818a8afb6f1e2f9974916f02d5fdeb72ec8.zip
Merge pull request #2566 from mattermost/plt-2350
PLT-2350 Added LDAP to signup page
Diffstat (limited to 'webapp/action_creators')
-rw-r--r--webapp/action_creators/websocket_actions.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/action_creators/websocket_actions.jsx b/webapp/action_creators/websocket_actions.jsx
index bb46db149..a66d79d18 100644
--- a/webapp/action_creators/websocket_actions.jsx
+++ b/webapp/action_creators/websocket_actions.jsx
@@ -67,7 +67,7 @@ export function initialize() {
connectFailCount = connectFailCount + 1;
if (connectFailCount > MAX_WEBSOCKET_FAILS) {
- ErrorStore.storeLastError(Utils.localizeMessage('channel_loader.socketError', 'Please check connection, Mattermost unreachable. If issue persists, ask administrator to check WebSocket port.'));
+ ErrorStore.storeLastError({message: Utils.localizeMessage('channel_loader.socketError', 'Please check connection, Mattermost unreachable. If issue persists, ask administrator to check WebSocket port.')});
}
ErrorStore.setConnectionErrorCount(connectFailCount);