def call(status)
raise Mastodon::RaceConditionError if status.visibility.nil?
- render_anonymous_payload(status)
-
if status.direct_visibility?
deliver_to_own_conversation(status)
elsif status.limited_visibility?
return if status.account.silenced? || !status.public_visibility? || status.reblog?
+ render_anonymous_payload(status)
+
deliver_to_hashtags(status)
return if status.reply? && status.in_reply_to_account_id != status.account_id
def deliver_to_mentioned_followers(status)
Rails.logger.debug "Delivering status #{status.id} to limited followers"
- FeedInsertWorker.push_bulk(status.mentions.includes(:account).map(&:account).select { |mentioned_account| mentioned_account.local? && mentioned_account.following?(status.account) }) do |follower|
- [status.id, follower.id, :home]
+ status.mentions.joins(:account).merge(status.account.followers_for_local_distribution).select(:id).reorder(nil).find_in_batches do |followers|
+ FeedInsertWorker.push_bulk(followers) do |follower|
+ [status.id, follower.id, :home]
+ end
end
end