From 761fd13a708e751608302b23405f557820217a2a Mon Sep 17 00:00:00 2001 From: Adam Warner Date: Sat, 16 Dec 2017 13:15:26 +0000 Subject: [PATCH] Remove quotes from the uniqDomains array to actually whitelist the sources Signed-off-by: Adam Warner --- gravity.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gravity.sh b/gravity.sh index 62cf36b9..a7e24d0a 100755 --- a/gravity.sh +++ b/gravity.sh @@ -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}" }