about summary refs log tree commit diff
path: root/app/lib/formatter.rb
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2019-05-12 21:33:37 +0200
committerThibG <thib@sitedethib.com>2019-05-17 23:51:14 +0200
commitd7520f81759e9db58a5b5ca61b9114e9ef44d92f (patch)
treef7d14b9aad6cc910fb932526764e4f36e7345f0a /app/lib/formatter.rb
parent94aef563b9abbc449028f44c4aac84ef2e072d89 (diff)
Add support for HTML-formatted toots
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 fe5b5b7b7..eaece8797 100644
--- a/app/lib/formatter.rb
+++ b/app/lib/formatter.rb
@@ -37,9 +37,9 @@ class Formatter
     html = raw_content
     html = "RT @#{prepend_reblog} #{html}" if prepend_reblog
     html = format_markdown(html) if status.content_type == 'text/markdown'
-    html = encode_and_link_urls(html, linkable_accounts, keep_html: status.content_type == 'text/markdown')
+    html = encode_and_link_urls(html, linkable_accounts, keep_html: %w(text/markdown text/html).include?(status.content_type))
     html = encode_custom_emojis(html, status.emojis, options[:autoplay]) if options[:custom_emojify]
-    html = simple_format(html, {}, sanitize: false) unless status.content_type == 'text/markdown'
+    html = simple_format(html, {}, sanitize: false) unless %w(text/markdown text/html).include?(status.content_type)
     html = html.delete("\n")
 
     html.html_safe # rubocop:disable Rails/OutputSafety