1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-11-17 21:59:55 +00:00
Signed-off-by: Dan Schaper <dan.schaper@pi-hole.net>
This commit is contained in:
Dan Schaper 2018-11-12 17:21:34 -08:00
parent f9e71bee0a
commit 5c621fa253
No known key found for this signature in database
GPG Key ID: B4FF14C01CC08DC0

View File

@ -257,11 +257,11 @@ gravity_DownloadBlocklistFromUrl() {
esac
if [[ "${blocked}" == true ]]; then
printf -v ip_addr "%s" ${PIHOLE_DNS_1%#*}
printf -v ip_addr "%s" "${PIHOLE_DNS_1%#*}"
if [[ ${PIHOLE_DNS_1} != *"#"* ]]; then
port=53
else
printf -v port "%s" ${PIHOLE_DNS_1#*#}
printf -v port "%s" "${PIHOLE_DNS_1#*#}"
fi
ip=$(dig "@${ip_addr}" -p "${port}" +short "${domain}")
if [[ $(echo "${url}" | awk -F '://' '{print $1}') = "https" ]]; then