From dce4db4c8636852319caae6e4d44b3c2d6d73d42 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Mon, 7 Jun 2021 10:08:55 +0200 Subject: [PATCH] Construct net.URL directly --- dnscrypt-proxy/serversInfo.go | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/dnscrypt-proxy/serversInfo.go b/dnscrypt-proxy/serversInfo.go index 5f8099a8..aaa77a12 100644 --- a/dnscrypt-proxy/serversInfo.go +++ b/dnscrypt-proxy/serversInfo.go @@ -668,11 +668,8 @@ func fetchTargetConfigsFromWellKnown(proxy *Proxy, url *url.URL) ([]ODoHTargetCo } func fetchODoHTargetInfo(proxy *Proxy, name string, stamp stamps.ServerStamp, isNew bool) (ServerInfo, error) { - xurl, err := url.Parse("https://" + url.PathEscape(stamp.ProviderName) + "/.well-known/odohconfigs") - if err != nil { - return ServerInfo{}, err - } - odohTargetConfigs, err := fetchTargetConfigsFromWellKnown(proxy, xurl) + configUrl := &url.URL{Scheme: "https", Host: stamp.ProviderName, Path: "/.well-known/odohconfigs"} + odohTargetConfigs, err := fetchTargetConfigsFromWellKnown(proxy, configUrl) if err != nil || len(odohTargetConfigs) == 0 { return ServerInfo{}, fmt.Errorf("[%s] does not have an Oblivious DoH configuration", name) }