butler: Don't send notifications if you're just spamming.

This commit is contained in:
Neil Williams
2013-05-21 15:02:21 -07:00
parent 127862df8a
commit 726924067c

View File

@@ -63,6 +63,10 @@ def monitor_mentions(comment):
usernames = list(extract_user_mentions(comment.body))
inbox_class = Inbox.rel(Account, Comment)
# don't be a jerk spammer
if len(usernames) > 3:
return
# Subreddit.can_view stupidly requires this.
c.user_is_loggedin = True