Ignore reports by users banned from the subreddit

This commit is contained in:
Chad Birch
2013-04-07 15:02:17 -06:00
parent 256f724328
commit b619e64cdc

View File

@@ -1081,7 +1081,9 @@ class ApiController(RedditController, OAuth2ResourceController):
elif isinstance(thing, Comment):
pass
if c.user._spam or c.user.ignorereports:
if (c.user._spam or
c.user.ignorereports or
thing.subreddit_slow.is_banned(c.user)):
return
Report.new(c.user, thing)
admintools.report(thing)