Fix scoped order warning in RemoveStatusService (#16531)
Fixes “Scoped order is ignored, it's forced to be batch order.”gh/stable
parent
e9659ae031
commit
1d67acb72f
|
@ -102,7 +102,7 @@ class RemoveStatusService < BaseService
|
||||||
# because once original status is gone, reblogs will disappear
|
# because once original status is gone, reblogs will disappear
|
||||||
# without us being able to do all the fancy stuff
|
# 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)
|
RemoveStatusService.new.call(reblog, original_removed: true)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Reference in New Issue