1
0
mirror of https://github.com/pi-hole/pi-hole synced 2025-01-03 12:40:56 +00:00

Escape periods in wildcard converted regex filters.

Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
This commit is contained in:
Mcat12 2018-07-08 15:45:06 -04:00
parent cfd95dbe87
commit 70f2b26c86
No known key found for this signature in database
GPG Key ID: ABB8FC9789AF524D

View File

@ -138,7 +138,7 @@ AddDomain() {
bool=true bool=true
domain="${1}" domain="${1}"
[[ "${wildcard}" == true ]] && domain="((^)|(\\.))${domain}$" [[ "${wildcard}" == true ]] && domain="((^)|(\\.))$(echo domain | sed "s/\./\\\./g")$"
# Is the domain in the list? # Is the domain in the list?
# Search only for exactly matching lines # Search only for exactly matching lines
@ -186,7 +186,7 @@ RemoveDomain() {
[[ -z "${type}" ]] && type="--wildcard-only" [[ -z "${type}" ]] && type="--wildcard-only"
domain="${1}" domain="${1}"
[[ "${wildcard}" == true ]] && domain="((^)|(\\.))${domain}$" [[ "${wildcard}" == true ]] && domain="((^)|(\\.))$(echo domain | sed "s/\./\\\./g")$"
bool=true bool=true
# Is it in the list? # Is it in the list?