Merge pull request #614 from matrix-org/kegan/show-error-on-pl-change-fail

Show the error dialog when requests to PUT power levels fail
pull/21833/head
Kegsay 2017-01-13 15:26:26 +00:00 committed by GitHub
commit 07b3c58c61
1 changed files with 2 additions and 1 deletions

View File

@ -376,6 +376,7 @@ module.exports = WithMatrixClient(React.createClass({
// get out of sync if we force setState here! // get out of sync if we force setState here!
console.log("Power change success"); console.log("Power change success");
}, function(err) { }, function(err) {
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
Modal.createDialog(ErrorDialog, { Modal.createDialog(ErrorDialog, {
title: "Failure to change power level", title: "Failure to change power level",
description: err.message description: err.message
@ -383,7 +384,7 @@ module.exports = WithMatrixClient(React.createClass({
} }
).finally(()=>{ ).finally(()=>{
this.setState({ updating: this.state.updating - 1 }); this.setState({ updating: this.state.updating - 1 });
}); }).done();
this.props.onFinished(); this.props.onFinished();
}, },