|
|
@ -34,7 +34,7 @@ class FanOutOnWriteService < BaseService |
|
|
|
def deliver_to_followers(status) |
|
|
|
def deliver_to_followers(status) |
|
|
|
Rails.logger.debug "Delivering status #{status.id} to followers" |
|
|
|
Rails.logger.debug "Delivering status #{status.id} to followers" |
|
|
|
|
|
|
|
|
|
|
|
status.account.followers.where(domain: nil).joins(:user).where('users.current_sign_in_at > ?', 14.days.ago).select(:id).find_each do |follower| |
|
|
|
status.account.followers.where(domain: nil).joins(:user).where('users.current_sign_in_at > ?', 14.days.ago).select(:id).reorder(nil).find_each do |follower| |
|
|
|
FeedInsertWorker.perform_async(status.id, follower.id) |
|
|
|
FeedInsertWorker.perform_async(status.id, follower.id) |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|