From 5e4bb4ad925d1f9b194f07a27e3ecc21e821a051 Mon Sep 17 00:00:00 2001 From: Morgan Bazalgette Date: Mon, 2 Apr 2018 12:04:11 +0200 Subject: [PATCH] masto api: run emojis through mediaproxy fixes #107 --- lib/pleroma/web/mastodon_api/views/status_view.ex | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/pleroma/web/mastodon_api/views/status_view.ex b/lib/pleroma/web/mastodon_api/views/status_view.ex index bc5ae5da7..df360644a 100644 --- a/lib/pleroma/web/mastodon_api/views/status_view.ex +++ b/lib/pleroma/web/mastodon_api/views/status_view.ex @@ -125,7 +125,11 @@ def render("status.json", %{activity: %{data: %{"object" => object}} = activity} (activity.data["object"]["emoji"] || []) |> Enum.map(fn {name, url} -> name = HtmlSanitizeEx.strip_tags(name) - url = HtmlSanitizeEx.strip_tags(url) + + url = + HtmlSanitizeEx.strip_tags(url) + |> MediaProxy.url() + %{shortcode: name, url: url, static_url: url} end)