also return Joining when internally busy looking something up

This commit is contained in:
Bruno Windels 2019-04-16 17:23:24 +02:00
parent 523311b50c
commit dbb73439e4

View file

@ -127,7 +127,7 @@ module.exports = React.createClass({
return MessageCase.Joining;
} else if (this.props.rejecting) {
return MessageCase.Rejecting;
} else if (this.props.loading) {
} else if (this.props.loading || this.state.busy) {
return MessageCase.Loading;
}