about summary refs log tree commit diff
path: root/app/lib/inline_renderer.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2022-11-04 13:21:06 +0100
committerGitHub <noreply@github.com>2022-11-04 13:21:06 +0100
commit5f9e47be34fcf42ff7fcd5668c7555d4a38e289a (patch)
tree5f0f22a0297e1235b8189d4cbd1a8568089e6f2d /app/lib/inline_renderer.rb
parentb8f6f039563044764336d4c62d87b1d5442d7c8b (diff)
Add caching for payload serialization during fan-out (#19642)
Diffstat (limited to 'app/lib/inline_renderer.rb')
-rw-r--r--app/lib/inline_renderer.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/lib/inline_renderer.rb b/app/lib/inline_renderer.rb
index b70814748..4bb240b48 100644
--- a/app/lib/inline_renderer.rb
+++ b/app/lib/inline_renderer.rb
@@ -11,6 +11,7 @@ class InlineRenderer
     case @template
     when :status
       serializer = REST::StatusSerializer
+      preload_associations_for_status
     when :notification
       serializer = REST::NotificationSerializer
     when :conversation
@@ -35,6 +36,16 @@ class InlineRenderer
 
   private
 
+  def preload_associations_for_status
+    ActiveRecord::Associations::Preloader.new.preload(@object, {
+      active_mentions: :account,
+
+      reblog: {
+        active_mentions: :account,
+      },
+    })
+  end
+
   def current_user
     @current_account&.user
   end