Преглед изворни кода

Automatically pass public filter when no blacklist configured

pull/4/head
Matt Baer пре 6 година
родитељ
комит
7893f07a80
1 измењених фајлова са 4 додато и 0 уклоњено
  1. +4
    -0
      filter.go

+ 4
- 0
filter.go Прегледај датотеку

@@ -1,6 +1,10 @@
package htmlhouse

func passesPublicFilter(app *app, html string) bool {
if app.cfg.BlacklistTerms == "" {
return true
}

spam := app.cfg.BlacklistReg.MatchString(html)
return !spam
}

Loading…
Откажи
Сачувај