Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
commit
9d175f9a05
1 changed files with 13 additions and 0 deletions
13
src/Login.js
13
src/Login.js
|
@ -204,6 +204,19 @@ export async function sendLoginRequest(hsUrl, isUrl, loginType, loginParams) {
|
||||||
|
|
||||||
const data = await client.login(loginType, loginParams);
|
const data = await client.login(loginType, loginParams);
|
||||||
|
|
||||||
|
const wellknown = data.well_known;
|
||||||
|
if (wellknown) {
|
||||||
|
if (wellknown["m.homeserver"] && wellknown["m.homeserver"]["base_url"]) {
|
||||||
|
hsUrl = wellknown["m.homeserver"]["base_url"];
|
||||||
|
console.log(`Overrode homeserver setting with ${hsUrl} from login response`);
|
||||||
|
}
|
||||||
|
if (wellknown["m.identity_server"] && wellknown["m.identity_server"]["base_url"]) {
|
||||||
|
// TODO: should we prompt here?
|
||||||
|
isUrl = wellknown["m.identity_server"]["base_url"];
|
||||||
|
console.log(`Overrode IS setting with ${isUrl} from login response`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
homeserverUrl: hsUrl,
|
homeserverUrl: hsUrl,
|
||||||
identityServerUrl: isUrl,
|
identityServerUrl: isUrl,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue