Fix exception when clearing room dir search

Needed more isMounted checks after promises return.
This commit is contained in:
David Baker 2016-12-06 14:59:10 +00:00
parent c0b931a837
commit 9e3c94edf4

View file

@ -402,6 +402,9 @@ module.exports = React.createClass({
q.finally(fillPromise, () => { q.finally(fillPromise, () => {
this._pendingFillRequests[dir] = false; this._pendingFillRequests[dir] = false;
}).then((hasMoreResults) => { }).then((hasMoreResults) => {
if (this.unmounted) {
return;
}
// Unpaginate once filling is complete // Unpaginate once filling is complete
this._checkUnfillState(!backwards); this._checkUnfillState(!backwards);