fix: Update banned domains
This commit is contained in:
parent
9fcab8e9e1
commit
4f560944ec
1 changed files with 6 additions and 2 deletions
6
main.go
6
main.go
|
@ -54,10 +54,14 @@ func main() {
|
|||
match = true
|
||||
}
|
||||
}
|
||||
if strings.HasSuffix(domain, "ndc.pl") {
|
||||
}
|
||||
for _, domain := range allDomains {
|
||||
for _, suffix := range []string{"ndc.pl", "workers.dev", "ec2.aws.dev"} {
|
||||
if strings.HasSuffix(domain, suffix) {
|
||||
match = false
|
||||
}
|
||||
}
|
||||
}
|
||||
if !match {
|
||||
continue
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue