Fix scope of callback

This may have led to the room list not refreshing on error of deleting alias
pull/3790/head
Michael Telatynski 2017-05-02 22:19:32 +01:00 committed by GitHub
parent 9f3c1deae6
commit d5009962cd
1 changed files with 1 additions and 1 deletions

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);