diff --git a/client/src/__locales/en.json b/client/src/__locales/en.json index 61e5c08e..5a252521 100644 --- a/client/src/__locales/en.json +++ b/client/src/__locales/en.json @@ -249,5 +249,5 @@ "update_announcement": "AdGuard Home {{version}} is now available! <0>Click here for more info.", "upstream_parallel": "Use parallel queries to speed up resolving by simultaneously querying all upstream servers", "bootstrap_dns": "Bootstrap DNS servers", - "bootstrap_dns_desc": "Bootstrap DNS servers are used to resolve IP address of the DOH/DOT resolvers you specify as upstreams." + "bootstrap_dns_desc": "Bootstrap DNS servers are used to resolve IP addresses of the DOH/DOT resolvers you specify as upstreams." } diff --git a/config.go b/config.go index 706dff25..6c5e57b3 100644 --- a/config.go +++ b/config.go @@ -60,7 +60,7 @@ type dnsConfig struct { UpstreamDNS []string `yaml:"upstream_dns"` } -var defaultDNS = []string{"https://dns.adguard.com/dns-query", "https://dns.cloudflare.com/dns-query"} +var defaultDNS = []string{"https://dns.cloudflare.com/dns-query"} var defaultBootstrap = []string{"1.1.1.1"} type tlsConfigSettings struct {