Merge pull request #3790 from t3chguy/patch-2

Fix scope of callback
This commit is contained in:
David Baker 2017-05-05 18:25:29 +01:00 committed by GitHub
commit 0deed1b511

View File

@ -204,7 +204,7 @@ module.exports = React.createClass({
}).done(() => {
modal.close();
this.refreshRoomList();
}, function(err) {
}, (err) => {
modal.close();
this.refreshRoomList();
console.error("Failed to " + step + ": " + err);