Fix scoped order warning in RemoveStatusService (#16531)

Fixes “Scoped order is ignored, it's forced to be batch order.”
master
Claire 3 years ago committed by GitHub
parent e9659ae031
commit 1d67acb72f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/services/remove_status_service.rb

@ -102,7 +102,7 @@ class RemoveStatusService < BaseService
# because once original status is gone, reblogs will disappear
# without us being able to do all the fancy stuff
@status.reblogs.includes(:account).find_each do |reblog|
@status.reblogs.includes(:account).reorder(nil).find_each do |reblog|
RemoveStatusService.new.call(reblog, original_removed: true)
end
end

Loading…
Cancel
Save