Style fixes
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Bad 2020-10-22 09:14:58 +02:00
parent 0113024be6
commit 16de7edd19
1 changed files with 6 additions and 11 deletions

View File

@ -71,7 +71,6 @@ class Form extends ElemJS {
this.on("submit", this.submit.bind(this))
}
async submit() {
if (this.processing) return
this.processing = true
@ -114,12 +113,12 @@ class Form extends ElemJS {
}
async findHomeserver(address, maxDepth = 5) {
//Protects us from servers sending us on a redirect loop
//Protects from servers sending us on a redirect loop
maxDepth--
if(maxDepth<=0) throw new Error(`Failed to look up homeserver, maximum search depth reached`)
if (maxDepth <= 0) throw new Error(`Failed to look up homeserver, maximum search depth reached`)
//Preprocess the address
//Normalise the address
if (!address.match(/^https?:\/\//)) {
console.warn(`${address} doesn't specify the protocol, assuming https`)
address = "https://" + address
@ -133,13 +132,13 @@ class Form extends ElemJS {
/* jshint ignore:start */
//JsHint doesn't support optional chaining
// https://github.com/jshint/jshint/issues/3448
if(versionsReq?.ok) {
if (versionsReq?.ok) {
const versions = await versionsReq.json().catch(()=>{})
if (Array.isArray(versions?.versions)) return address
}
/* jshint ignore:end */
// 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 => {
console.error(e)
throw new Error(`Failed to look up server ${address}`)
@ -155,7 +154,6 @@ class Form extends ElemJS {
return this.findHomeserver(nextAddress, maxDepth)
}
status(message) {
feedback.setLoading(true)
feedback.message(message)
@ -169,6 +167,3 @@ class Form extends ElemJS {
}
const form = new Form()