Make this a done so it doesn't swallow exceptions
This commit is contained in:
@@ -72,7 +72,7 @@ module.exports = {
|
|||||||
MatrixClientPeg.get().login('m.login.password', {
|
MatrixClientPeg.get().login('m.login.password', {
|
||||||
'user': that.refs.user.getDOMNode().value,
|
'user': that.refs.user.getDOMNode().value,
|
||||||
'password': that.refs.pass.getDOMNode().value
|
'password': that.refs.pass.getDOMNode().value
|
||||||
}).then(function(data) {
|
}).done(function(data) {
|
||||||
// XXX: we assume this means we're logged in, but there could be a next stage
|
// XXX: we assume this means we're logged in, but there could be a next stage
|
||||||
MatrixClientPeg.replace(Matrix.createClient({
|
MatrixClientPeg.replace(Matrix.createClient({
|
||||||
baseUrl: that.state.hs_url,
|
baseUrl: that.state.hs_url,
|
||||||
|
|||||||
Reference in New Issue
Block a user