You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-07 10:46:24 +03:00
s/.done(/.then(/ since modern es6 track unhandled promise exceptions
This commit is contained in:
@@ -253,7 +253,7 @@ module.exports = createReactClass({
|
||||
this.setState({
|
||||
busy: false,
|
||||
});
|
||||
}).done();
|
||||
}).then();
|
||||
},
|
||||
|
||||
onUsernameChanged: function(username) {
|
||||
@@ -424,7 +424,7 @@ module.exports = createReactClass({
|
||||
this.setState({
|
||||
busy: false,
|
||||
});
|
||||
}).done();
|
||||
}).then();
|
||||
},
|
||||
|
||||
_isSupportedFlow: function(flow) {
|
||||
|
||||
Reference in New Issue
Block a user