mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-08 23:43:11 -06:00
mediaapi/writers/download: getMatrixUrls -> getMatrixURLs
This commit is contained in:
parent
0fcf74014d
commit
8626308dac
|
|
@ -247,7 +247,7 @@ func (r *downloadRequest) respondFromLocalFile(w http.ResponseWriter, absBasePat
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *downloadRequest) createRemoteRequest() (*http.Response, *util.JSONResponse) {
|
func (r *downloadRequest) createRemoteRequest() (*http.Response, *util.JSONResponse) {
|
||||||
urls := getMatrixUrls(r.MediaMetadata.Origin)
|
urls := getMatrixURLs(r.MediaMetadata.Origin)
|
||||||
|
|
||||||
r.Logger.WithField("URL", urls[0]).Info("Connecting to remote")
|
r.Logger.WithField("URL", urls[0]).Info("Connecting to remote")
|
||||||
|
|
||||||
|
|
@ -504,7 +504,7 @@ func (r *downloadRequest) respondFromRemoteFile(w http.ResponseWriter, absBasePa
|
||||||
|
|
||||||
// Given a matrix server name, attempt to discover URLs to contact the server
|
// Given a matrix server name, attempt to discover URLs to contact the server
|
||||||
// on.
|
// on.
|
||||||
func getMatrixUrls(serverName gomatrixserverlib.ServerName) []string {
|
func getMatrixURLs(serverName gomatrixserverlib.ServerName) []string {
|
||||||
_, srvs, err := net.LookupSRV("matrix", "tcp", string(serverName))
|
_, srvs, err := net.LookupSRV("matrix", "tcp", string(serverName))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return []string{"https://" + string(serverName) + ":8448"}
|
return []string{"https://" + string(serverName) + ":8448"}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue