about summary refs log tree commit diff
path: root/app/lib/formatter.rb
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-02-09 19:48:05 +0100
committerGitHub <noreply@github.com>2022-02-09 19:48:05 +0100
commitd602c92b310545eb733a58caed49717341abe27c (patch)
tree59b020274695be37d47d0a4c98962c2677e621e6 /app/lib/formatter.rb
parent8987ea4d6b236657b8ea97d619902668768ae8ff (diff)
parentd90da7d080d25355290e5d5e86c2c918d685add7 (diff)
Merge pull request #1681 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/lib/formatter.rb')
-rw-r--r--app/lib/formatter.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/lib/formatter.rb b/app/lib/formatter.rb
index f2c4beed5..94d149da3 100644
--- a/app/lib/formatter.rb
+++ b/app/lib/formatter.rb
@@ -32,7 +32,7 @@ class Formatter
   include ActionView::Helpers::TextHelper
 
   def format(status, **options)
-    if status.reblog?
+    if status.respond_to?(:reblog?) && status.reblog?
       prepend_reblog = status.reblog.account.acct
       status         = status.proper
     else
@@ -53,7 +53,7 @@ class Formatter
       return html.html_safe # rubocop:disable Rails/OutputSafety
     end
 
-    linkable_accounts = status.active_mentions.map(&:account)
+    linkable_accounts = status.respond_to?(:active_mentions) ? status.active_mentions.map(&:account) : []
     linkable_accounts << status.account
 
     html = raw_content