You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-13 08:02:38 +03:00
PR feedback
This commit is contained in:
@@ -158,7 +158,7 @@ export default class Login {
|
||||
deviceId: data.device_id,
|
||||
accessToken: data.access_token,
|
||||
});
|
||||
}, function(fallback_error) {
|
||||
}).catch((fallback_error) => {
|
||||
// throw the original error
|
||||
throw originalError;
|
||||
});
|
||||
@@ -172,13 +172,13 @@ export default class Login {
|
||||
});
|
||||
return client.login('m.login.password', loginParamsLowercase).then(function(data) {
|
||||
return Promise.resolve({
|
||||
homeserverUrl: self._fallbackHsUrl,
|
||||
homeserverUrl: self._hsUrl,
|
||||
identityServerUrl: self._isUrl,
|
||||
userId: data.user_id,
|
||||
deviceId: data.device_id,
|
||||
accessToken: data.access_token,
|
||||
});
|
||||
}, function(fallback_error) {
|
||||
}).catch((fallback_error) => {
|
||||
// throw the original error
|
||||
throw originalError;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user