diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-03-28 20:51:51 +0200 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2022-03-28 22:21:37 +0200 |
commit | 61cefbebf717326bd6ec3923e67e3702a24a0b24 (patch) | |
tree | 99b7b8816739be2701d8629b4cb6d7fb4423e135 /app/helpers | |
parent | f313bf3e97ddd83e7847ae00f5bdb488942c943c (diff) |
Add advanced text formatting back into glitch-soc
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/formatting_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/formatting_helper.rb b/app/helpers/formatting_helper.rb index e11156999..2a622ae0b 100644 --- a/app/helpers/formatting_helper.rb +++ b/app/helpers/formatting_helper.rb @@ -14,7 +14,7 @@ module FormattingHelper end def status_content_format(status) - html_aware_format(status.text, status.local?, preloaded_accounts: [status.account] + (status.respond_to?(:active_mentions) ? status.active_mentions.map(&:account) : [])) + html_aware_format(status.text, status.local?, preloaded_accounts: [status.account] + (status.respond_to?(:active_mentions) ? status.active_mentions.map(&:account) : []), content_type: status.content_type) end def account_bio_format(account) |