mirror of https://git.keinpfusch.net/loweel/zabov
- single/double and local lists: ignore blank/comment lines
This commit is contained in:
parent
946a2245cc
commit
aef07c50d6
|
@ -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{}
|
||||
|
|
|
@ -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{}
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue