Keep people in convo as long as they replied once

This commit is contained in:
Jaiden Mispy 2014-12-20 07:24:40 +11:00
parent 52d82c99ae
commit 596f41f15f
2 changed files with 3 additions and 7 deletions

View file

@ -40,8 +40,8 @@ module Ebooks
# Figure out whether to keep this user in the reply prefix
# We want to avoid spamming non-participating users
def can_include?(username)
@tweets.length <= 6 ||
!@tweets[-6..-1].select { |t| t.user.screen_name.downcase == username.downcase }.empty?
@tweets.length <= 4 ||
!@tweets.select { |t| t.user.screen_name.downcase == username.downcase }.empty?
end
end