1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-10 09:22:25 +03:00

Merge pull request #363 from matrix-org/dbkr/fix_start_chat

Fix 'start chat' button on MemberInfo
This commit is contained in:
Matthew Hodgson
2016-07-22 18:36:32 +01:00
committed by GitHub

View File

@@ -406,14 +406,14 @@ module.exports = React.createClass({
this.props.onFinished();
}
else {
self.setState({ updating: self.state.updating + 1 });
this.setState({ updating: this.state.updating + 1 });
createRoom({
createOpts: {
invite: [this.props.member.userId],
},
}).finally(function() {
self.props.onFinished();
self.setState({ updating: self.state.updating - 1 });
}).finally(() => {
this.props.onFinished();
this.setState({ updating: this.state.updating - 1 });
}).done();
}
},