Browse Source

Fix N+1 on AtomSerializer (#7669)

pull/4/head
abcang 6 years ago
committed by Eugen Rochko
parent
commit
90908fc24b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/lib/ostatus/atom_serializer.rb

+ 1
- 1
app/lib/ostatus/atom_serializer.rb View File

@ -354,7 +354,7 @@ class OStatus::AtomSerializer
append_element(entry, 'summary', status.spoiler_text, 'xml:lang': status.language) if status.spoiler_text?
append_element(entry, 'content', Formatter.instance.format(status).to_str, type: 'html', 'xml:lang': status.language)
status.mentions.order(:id).each do |mentioned|
status.mentions.sort_by(&:id).each do |mentioned|
append_element(entry, 'link', nil, rel: :mentioned, 'ostatus:object-type': OStatus::TagManager::TYPES[:person], href: OStatus::TagManager.instance.uri_for(mentioned.account))
end

Loading…
Cancel
Save