Revert "Error if no servers available to join via"

This reverts commit 2c543ac034.
This commit is contained in:
Neil Alexander 2021-11-15 15:40:38 +00:00
parent 2c543ac034
commit ae02c5e6ae
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -83,18 +83,6 @@ func (r *FederationSenderInternalAPI) PerformJoin(
}
request.ServerNames = uniqueList
// If there are no servers to join via then, well, don't bother.
if len(request.ServerNames) == 0 {
response.LastError = &gomatrix.HTTPError{
Code: 400,
Message: `{
"errcode": "M_MISSING_PARAM",
"error": "No servers were supplied in the request."
}`, // TODO: Why do none of our error types play nicely with each other?
}
return
}
// Try each server that we were provided until we land on one that
// successfully completes the make-join send-join dance.
var lastErr error