Fixed function binding in FileStore

This commit is contained in:
Harrison Healey
2016-03-30 11:56:52 -04:00
parent 52074b70a4
commit 32962299e1

View File

@@ -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();