Do not re-query mentions from serializers (#6858)
Fix performance regression from #6836
This commit is contained in:
parent
da70aca28e
commit
9fe1619db9
2 changed files with 2 additions and 2 deletions
|
@ -87,7 +87,7 @@ class REST::StatusSerializer < ActiveModel::Serializer
|
|||
end
|
||||
|
||||
def ordered_mentions
|
||||
object.mentions.order(:id)
|
||||
object.mentions.to_a.sort_by(&:id)
|
||||
end
|
||||
|
||||
class ApplicationSerializer < ActiveModel::Serializer
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue