Browse Source

formatter: use Pleroma.HTML module instead of HtmlSanitizeEx directly

tags/v0.9.9
William Pitcock 5 years ago
parent
commit
52b05137c5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/pleroma/formatter.ex

+ 1
- 1
lib/pleroma/formatter.ex View File

@@ -193,7 +193,7 @@ defmodule Pleroma.Formatter do

# TODO: make it use something other than @link_regex
def html_escape(text, "text/html") do
HtmlSanitizeEx.basic_html(text)
HTML.filter_tags(text)
end

def html_escape(text, "text/plain") do


Loading…
Cancel
Save