Remove RoomListStore listener

This caused the the RoomList component to leak (although in practice
only accross logins because that's the only time it's unmounted)
pull/21833/head
David Baker 2018-02-15 11:23:00 +00:00
parent ca763faf96
commit ceec405519
2 changed files with 5 additions and 1 deletions

View File

@ -128,7 +128,7 @@
"require-json": "0.0.1",
"rimraf": "^2.4.3",
"sinon": "^1.17.3",
"source-map-loader": "^0.1.5",
"source-map-loader": "^0.1.6",
"walk": "^2.3.9",
"webpack": "^1.12.14"
}

View File

@ -191,6 +191,10 @@ module.exports = React.createClass({
this._tagStoreToken.remove();
}
if (this._roomListStoreToken) {
this._roomListStoreToken.remove();
}
if (this._groupStoreTokens.length > 0) {
// NB: GroupStore is not a Flux.Store
this._groupStoreTokens.forEach((token) => token.unregister());