mirror of
https://github.com/pi-hole/pi-hole
synced 2025-02-22 21:12:01 +00:00
Merge pull request #2865 from ryrun/patch-1
quick fix for when dig also returns a CNAME
This commit is contained in:
commit
56e3565a9e
@ -349,7 +349,7 @@ gravity_DownloadBlocklistFromUrl() {
|
||||
else
|
||||
printf -v port "%s" "${PIHOLE_DNS_1#*#}"
|
||||
fi
|
||||
ip=$(dig "@${ip_addr}" -p "${port}" +short "${domain}")
|
||||
ip=$(dig "@${ip_addr}" -p "${port}" +short "${domain}" | tail -1)
|
||||
if [[ $(echo "${url}" | awk -F '://' '{print $1}') = "https" ]]; then
|
||||
port=443;
|
||||
else port=80
|
||||
|
Loading…
Reference in New Issue
Block a user