Fix Sidekiq warning when pushing DMs to direct timeline

lolsob-rspec
Claire 2022-01-28 09:07:56 +01:00
parent daab277c0e
commit de596a03c0
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ class FanOutOnWriteService < BaseService
def deliver_to_direct_timelines!
FeedInsertWorker.push_bulk(@status.mentions.includes(:account).map(&:account).select { |mentioned_account| mentioned_account.local? }) do |account|
[@status.id, account.id, :direct, update: update?]
[@status.id, account.id, 'direct', { 'update' => update? }]
end
end