Fix scope of callback
This may have led to the room list not refreshing on error of deleting aliaspull/3790/head
parent
9f3c1deae6
commit
d5009962cd
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue