Adds manual blocklist option

This commit is contained in:
2022-03-17 16:55:48 -05:00
parent aa0006f8e5
commit f012551b96
3 changed files with 8 additions and 1 deletions

View File

@ -52,6 +52,9 @@ func getListData() []string {
}
}
// append deny list items to list of blocked domains
badDomains = append(badDomains, config.Config.DenyList...)
return badDomains
}