diff --git a/app/services/fan_out_on_write_service.rb b/app/services/fan_out_on_write_service.rb index 41a4e210e1..4e340640d7 100644 --- a/app/services/fan_out_on_write_service.rb +++ b/app/services/fan_out_on_write_service.rb @@ -99,6 +99,12 @@ class FanOutOnWriteService < BaseService [account.id, @status.id, 'Status', 'update'] end end + + @status.quotes.accepted.find_in_batches do |quotes| + LocalNotificationWorker.push_bulk(quotes) do |quote| + [quote.account_id, quote.status_id, 'Status', 'update'] + end + end end def deliver_to_all_followers!