this repo has no description
0
fork

Configure Feed

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

automod: Enable reporting for high repost count

authored by

Foysal Ahamed and committed by
bnewbold
d9678441 082d2bcc

+2 -1
+2 -1
automod/rules/reposts.go
··· 1 1 package rules 2 2 3 3 import ( 4 + "fmt" 4 5 "strings" 5 6 "time" 6 7 ··· 44 45 if highRepost { 45 46 c.Logger.Info("high-repost-count", "reposted-today", repostCount, "posted-today", postCount) 46 47 c.AddAccountFlag("high-repost-count") 47 - // c.ReportAccount(automod.ReportReasonSpam, fmt.Sprintf("too many reposts: %d reposts, %d posts today (so far)", repostCount, postCount)) 48 + c.ReportAccount(automod.ReportReasonSpam, fmt.Sprintf("too many reposts: %d reposts, %d posts today (so far)", repostCount, postCount)) 48 49 c.Notify("slack") 49 50 } 50 51 }