diff options
author | abcang <abcang1015@gmail.com> | 2018-05-29 20:34:02 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-05-29 13:34:02 +0200 |
commit | 90908fc24ba57c877de75fe117b8cc234e29d4f0 (patch) | |
tree | 27fc4f139e4bfaaa9ea9041d6ba3c6ea0f7827ba /app/lib | |
parent | 13b60e6a146bb4717586573d63fa27f93d03a8fd (diff) |
Fix N+1 on AtomSerializer (#7669)
Diffstat (limited to 'app/lib')
-rw-r--r-- | app/lib/ostatus/atom_serializer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/ostatus/atom_serializer.rb b/app/lib/ostatus/atom_serializer.rb index 698f2ee22..5c6ff4f9b 100644 --- a/app/lib/ostatus/atom_serializer.rb +++ b/app/lib/ostatus/atom_serializer.rb @@ -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 |