summaryrefslogtreecommitdiffstats
path: root/web/react/stores/file_store.jsx
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2016-02-08 10:33:59 -0500
committerhmhealey <harrisonmhealey@gmail.com>2016-02-08 10:33:59 -0500
commit2af861423619271651e01f1bb879c6e5f189f241 (patch)
treeac8f500b7590bca75c43797f78a912c03b705ca8 /web/react/stores/file_store.jsx
parent96cb7345dafbf07027acb9dc05fc7d0808a4ac38 (diff)
downloadchat-2af861423619271651e01f1bb879c6e5f189f241.tar.gz
chat-2af861423619271651e01f1bb879c6e5f189f241.tar.bz2
chat-2af861423619271651e01f1bb879c6e5f189f241.zip
Renamed RECIEVED_* to RECEIVED_*
Diffstat (limited to 'web/react/stores/file_store.jsx')
-rw-r--r--web/react/stores/file_store.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/stores/file_store.jsx b/web/react/stores/file_store.jsx
index ca8c6a96b..6d7e0f354 100644
--- a/web/react/stores/file_store.jsx
+++ b/web/react/stores/file_store.jsx
@@ -49,7 +49,7 @@ class FileStore extends EventEmitter {
const action = payload.action;
switch (action.type) {
- case ActionTypes.RECIEVED_FILE_INFO:
+ case ActionTypes.RECEIVED_FILE_INFO:
this.setInfo(action.filename, action.info);
this.emitChange(action.filename);
break;