Redirects for videos right now

This commit is contained in:
Mark Felder 2020-08-25 17:31:55 -05:00
parent 899ea2da3e
commit ddbddc08fc
1 changed files with 6 additions and 0 deletions

View File

@ -69,6 +69,12 @@ defmodule Pleroma.Web.MediaProxy.MediaProxyController do
handle_image_preview(conn, url)
end
defp handle_preview("video/" <> _ = _content_type, conn, url) do
mediaproxy_url = url |> MediaProxy.url()
redirect(conn, external: mediaproxy_url)
end
defp handle_preview(content_type, conn, _url) do
send_resp(conn, :unprocessable_entity, "Unsupported content type: #{content_type}.")
end