summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2016-03-30 10:08:34 -0700
committerCorey Hulen <corey@hulen.com>2016-03-30 10:08:34 -0700
commit6cad40ecf41740ae57a14df12dc363adafb49d18 (patch)
tree2808b33300cb6488ed863ed66fdcd30d6f7b41f3
parent2aa0d9b8fc2e31e51bbddc8d90fe801c089f7c4b (diff)
parent32962299e174a3017e2f7228f9edfe3dae13ffbc (diff)
downloadchat-6cad40ecf41740ae57a14df12dc363adafb49d18.tar.gz
chat-6cad40ecf41740ae57a14df12dc363adafb49d18.tar.bz2
chat-6cad40ecf41740ae57a14df12dc363adafb49d18.zip
Merge pull request #2580 from hmhealey/plt2482
PLT-2482 Fixed function binding in FileStore
-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();