summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2016-03-29 10:47:30 -0400
committerJoram Wilander <jwawilander@gmail.com>2016-03-29 10:47:30 -0400
commit4a6edbfd0854c097cf8fb64a3ddd75b43dfcd401 (patch)
tree3b02cbc9d15528242fecb7b2b36e33cf0159f0b3
parentbf636404d25e943d869a32d8fe145eaa57a64039 (diff)
parentb7a2658644e687c00f13bcad65c4b1edc1717a37 (diff)
downloadchat-4a6edbfd0854c097cf8fb64a3ddd75b43dfcd401.tar.gz
chat-4a6edbfd0854c097cf8fb64a3ddd75b43dfcd401.tar.bz2
chat-4a6edbfd0854c097cf8fb64a3ddd75b43dfcd401.zip
Merge pull request #2560 from mattermost/plt-2464
PLT-2464 Fixing js error with notifications.
-rw-r--r--webapp/stores/notification_store.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/stores/notification_store.jsx b/webapp/stores/notification_store.jsx
index 70caffeb6..6722af281 100644
--- a/webapp/stores/notification_store.jsx
+++ b/webapp/stores/notification_store.jsx
@@ -89,7 +89,7 @@ NotificationStore.dispatchToken = AppDispatcher.register((payload) => {
switch (action.type) {
case ActionTypes.RECEIVED_POST:
- NotificationStore.handleRecievedPost(action.post, action.webspcketMessageProps);
+ NotificationStore.handleRecievedPost(action.post, action.websocketMessageProps);
NotificationStore.emitChange();
break;
}