This commit is contained in:
parent
6f67ddbce5
commit
0c3c06bc0a
1 changed files with 8 additions and 6 deletions
|
@ -128,13 +128,15 @@ class Form extends ElemJS {
|
||||||
this.status(`Looking up homeserver... trying ${address}`)
|
this.status(`Looking up homeserver... trying ${address}`)
|
||||||
|
|
||||||
// check if we found the actual matrix server
|
// check if we found the actual matrix server
|
||||||
const versionsReq = await fetch(`${address}/_matrix/client/versions`).catch(()=>{});
|
try {
|
||||||
if(versionsReq?.ok) {
|
const versionsReq = await fetch(`${address}/_matrix/client/versions`)
|
||||||
const versions = await versionsReq.json().catch(()=>{})
|
if(versionsReq.ok) {
|
||||||
if (Array.isArray(versions.versions)) {
|
const versions = await versionsReq.json().catch(()=>{})
|
||||||
return address
|
if (Array.isArray(versions.versions)) {
|
||||||
|
return address
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
} catch(e) {}
|
||||||
|
|
||||||
// find the next matrix server in the chain
|
// find the next matrix server in the chain
|
||||||
const root = await fetch(`${address}/.well-known/matrix/client`).then(res => res.json()).catch(e => {
|
const root = await fetch(`${address}/.well-known/matrix/client`).then(res => res.json()).catch(e => {
|
||||||
|
|
Loading…
Reference in a new issue