- single/double and local lists: ignore blank/comment lines

pull/1/head
bloved 2021-01-15 13:28:15 +01:00
parent 946a2245cc
commit aef07c50d6
3 changed files with 10 additions and 0 deletions

View File

@ -107,6 +107,9 @@ func downloadDoubleThread() {
}
s := fileByLines(ZabovDoubleBL)
for _, v := range s {
if len(v) == 0 || strings.TrimSpace(v)[0] == '#' {
continue
}
configs := _urls[v]
if configs == nil {
configs = stringarray{}

View File

@ -108,6 +108,9 @@ func downloadThread() {
s := fileByLines(ZabovSingleBL)
for _, v := range s {
if len(v) == 0 || strings.TrimSpace(v)[0] == '#' {
continue
}
configs := _urls[v]
if configs == nil {
configs = stringarray{}

View File

@ -4,6 +4,7 @@ import (
"bufio"
"fmt"
"os"
"strings"
)
func init() {
@ -41,6 +42,9 @@ func ingestLocalBlacklists() {
scanner := bufio.NewScanner(file)
for scanner.Scan() {
d := scanner.Text()
if len(d) == 0 || strings.TrimSpace(d)[0] == '#' {
continue
}
DomainKill(d, ZabovHostsFile, configs)
incrementStats("Blacklist", 1)