Add unmounted guard

This commit is contained in:
lukebarnard 2017-12-13 10:42:11 +00:00
parent 42c1f3cfe2
commit a8b245d0cf

View file

@ -64,6 +64,7 @@ const TagPanel = React.createClass({
Promise.all(orderedGroupTags.map(
(groupId) => FlairStore.getGroupProfileCached(this.context.matrixClient, groupId),
)).then((orderedGroupTagProfiles) => {
if (this.unmounted) return;
this.setState({orderedGroupTagProfiles});
});
});