this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

rules: simple word typo

+1 -1
+1 -1
automod/rules/keyword.go
··· 23 23 tok = strings.TrimSuffix(tok, "s") 24 24 if c.InSet("worst-words", tok) { 25 25 c.AddRecordFlag("bad-word-text") 26 - c.ReportRecord(automod.ReportReasonRude, fmt.Sprintf("possible bad word in post text or alttext: %s", word)) 26 + c.ReportRecord(automod.ReportReasonRude, fmt.Sprintf("possible bad word in post text or alttext: %s", tok)) 27 27 c.Notify("slack") 28 28 break 29 29 }