Merge pull request #1849 from pi-hole/fix/1826

Remove quotes from the uniqDomains array to actually whitelist the so…
pull/1831/merge
Adam Warner 7 years ago committed by GitHub
commit f5237db580
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -432,7 +432,7 @@ gravity_WhitelistBLD() {
echo -ne " ${INFO} ${str}..."
# Whitelist $uniqDomains
"${PIHOLE_COMMAND}" -w -nr -q "${uniqDomains[*]}" &> /dev/null
"${PIHOLE_COMMAND}" -w -nr -q ${uniqDomains[*]} &> /dev/null
echo -e "${OVER} ${TICK} ${str}"
}

Loading…
Cancel
Save