Skip to content

Commit

Permalink
Merge pull request pi-hole#1849 from pi-hole/fix/1826
Browse files Browse the repository at this point in the history
Remove quotes from the uniqDomains array to actually whitelist the so…
  • Loading branch information
PromoFaux authored Dec 16, 2017
2 parents e3fa06d + 761fd13 commit f5237db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gravity.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
}
Expand Down

0 comments on commit f5237db

Please sign in to comment.