Remove quotes from the uniqDomains array to actually whitelist the sources

Signed-off-by: Adam Warner <adamw@rner.email>
This commit is contained in:
Adam Warner 2017-12-16 13:15:26 +00:00
parent e3fa06d7ff
commit 761fd13a70
No known key found for this signature in database
GPG key ID: F5410858022DA5EB

View file

@ -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}"
}