aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2017-06-18 13:40:35 +0200
committerRoger Braun <roger@rogerbraun.net>2017-06-18 13:40:35 +0200
commit8feec8d390f34114c5f42faf366f899a2b4af9fb (patch)
treee613c70ac9ae5b8e838fc6cb2ec60403b8389eb3 /lib
parenta9bfbcae800e88b85814c718b0c4bfa9d8dfcfaa (diff)
downloadpleroma-8feec8d390f34114c5f42faf366f899a2b4af9fb.tar.gz
Strip unsafe html on output in TwAPI.
Diffstat (limited to 'lib')
-rw-r--r--lib/pleroma/web/twitter_api/representers/activity_representer.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/twitter_api/representers/activity_representer.ex b/lib/pleroma/web/twitter_api/representers/activity_representer.ex
index ade200268..6f22e45fa 100644
--- a/lib/pleroma/web/twitter_api/representers/activity_representer.ex
+++ b/lib/pleroma/web/twitter_api/representers/activity_representer.ex
@@ -105,7 +105,7 @@ defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenter do
"id" => activity.id,
"user" => UserRepresenter.to_map(user, opts),
"attentions" => [],
- "statusnet_html" => content,
+ "statusnet_html" => HtmlSanitizeEx.basic_html(content),
"text" => HtmlSanitizeEx.strip_tags(content),
"is_local" => true,
"is_post_verb" => true,