mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
Merge pull request #1456 from WaLLy3K/patch-3
Update queryFunc() to search Whitelist
This commit is contained in:
commit
e23c6899e0
1 changed files with 3 additions and 3 deletions
6
pihole
6
pihole
|
@ -106,12 +106,12 @@ queryFunc() {
|
|||
domain="${2}"
|
||||
fi
|
||||
|
||||
# Scan Blacklist and Wildcards
|
||||
lists="/etc/pihole/blacklist.txt $wildcardlist"
|
||||
# Scan Whitelist, Blacklist and Wildcards
|
||||
lists="/etc/pihole/whitelist.txt /etc/pihole/blacklist.txt $wildcardlist"
|
||||
result=$(scanList ${domain} "${lists}" ${method})
|
||||
if [ -n "$result" ]; then
|
||||
echo "$result"
|
||||
exit 0
|
||||
[[ ! -t 1 ]] && exit 0
|
||||
fi
|
||||
|
||||
# Scan Domains lists
|
||||
|
|
Loading…
Reference in a new issue