ソースを参照

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
}

読み込み中…
キャンセル
保存