Clean up code
This commit is contained in:
parent
4382928a93
commit
aa12cd68e6
1 changed files with 7 additions and 9 deletions
|
@ -128,15 +128,13 @@ class Form extends ElemJS {
|
|||
this.status(`Looking up homeserver... trying ${address}`)
|
||||
|
||||
// Check if we found the actual matrix server
|
||||
const versionsReq = await fetch(`${address}/_matrix/client/versions`).catch(()=>{})
|
||||
/* jshint ignore:start */
|
||||
//JsHint doesn't support optional chaining
|
||||
// https://github.com/jshint/jshint/issues/3448
|
||||
if (versionsReq?.ok) {
|
||||
const versions = await versionsReq.json().catch(()=>{})
|
||||
if (Array.isArray(versions?.versions)) return address
|
||||
}
|
||||
/* jshint ignore:end */
|
||||
try {
|
||||
const versionsReq = await fetch(`${address}/_matrix/client/versions`)
|
||||
if (versionsReq.ok) {
|
||||
const versions = await versionsReq.json()
|
||||
if (Array.isArray(versions.versions)) return address
|
||||
}
|
||||
} catch(e) {}
|
||||
|
||||
// Find the next matrix server in the chain
|
||||
const root = await fetch(`${address}/.well-known/matrix/client`).then(res => res.json()).catch(e => {
|
||||
|
|
Loading…
Reference in a new issue