summaryrefslogtreecommitdiffstats
path: root/webapp/stores
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2016-03-30 11:56:52 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2016-03-30 11:56:52 -0400
commit32962299e174a3017e2f7228f9edfe3dae13ffbc (patch)
treed8cb4f8e0cff7f3d5084f49c24a40016b8eae27d /webapp/stores
parent52074b70a448841d34eec8a4920ab4d35a028d09 (diff)
downloadchat-32962299e174a3017e2f7228f9edfe3dae13ffbc.tar.gz
chat-32962299e174a3017e2f7228f9edfe3dae13ffbc.tar.bz2
chat-32962299e174a3017e2f7228f9edfe3dae13ffbc.zip
Fixed function binding in FileStore
Diffstat (limited to 'webapp/stores')
-rw-r--r--webapp/stores/file_store.jsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/webapp/stores/file_store.jsx b/webapp/stores/file_store.jsx
index 6473e0474..2692e6959 100644
--- a/webapp/stores/file_store.jsx
+++ b/webapp/stores/file_store.jsx
@@ -13,6 +13,7 @@ class FileStore extends EventEmitter {
constructor() {
super();
+ this.handleEventPayload = this.handleEventPayload.bind(this);
this.dispatchToken = AppDispatcher.register(this.handleEventPayload);
this.fileInfo = new Map();