mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 05:18:06 +01:00
Fix scoped order warning in RemoveStatusService (#16531)
Fixes “Scoped order is ignored, it's forced to be batch order.”
This commit is contained in:
parent
e9659ae031
commit
1d67acb72f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue