PR feedback

This commit is contained in:
David Baker 2017-10-27 18:59:13 +01:00
parent 5312a869e4
commit b437a2559d

View file

@ -158,7 +158,7 @@ export default class Login {
deviceId: data.device_id, deviceId: data.device_id,
accessToken: data.access_token, accessToken: data.access_token,
}); });
}, function(fallback_error) { }).catch((fallback_error) => {
// throw the original error // throw the original error
throw originalError; throw originalError;
}); });
@ -172,13 +172,13 @@ export default class Login {
}); });
return client.login('m.login.password', loginParamsLowercase).then(function(data) { return client.login('m.login.password', loginParamsLowercase).then(function(data) {
return Promise.resolve({ return Promise.resolve({
homeserverUrl: self._fallbackHsUrl, homeserverUrl: self._hsUrl,
identityServerUrl: self._isUrl, identityServerUrl: self._isUrl,
userId: data.user_id, userId: data.user_id,
deviceId: data.device_id, deviceId: data.device_id,
accessToken: data.access_token, accessToken: data.access_token,
}); });
}, function(fallback_error) { }).catch((fallback_error) => {
// throw the original error // throw the original error
throw originalError; throw originalError;
}); });