fix a regression introduced by 4f54465c3b (#2966)

that caused user pages to break when showing toots with CWs
th-downstream
beatrix 8 years ago committed by Eugen Rochko
parent 04ee7e7b62
commit e71ac76f5e

@ -29,9 +29,10 @@ class Formatter
return reformat(status.spoiler_text) unless status.local? return reformat(status.spoiler_text) unless status.local?
html = status.spoiler_text html = status.spoiler_text
html = encode(html) html = encode_and_link_urls(html)
html = simple_format(html, {}, sanitize: false)
html = html.delete("\n") html = html.delete("\n")
html = link_hashtags(html)
html.html_safe # rubocop:disable Rails/OutputSafety html.html_safe # rubocop:disable Rails/OutputSafety
end end

Loading…
Cancel
Save