Skip to content
Snippets Groups Projects
Commit cbadf9d3 authored by rinpatch's avatar rinpatch
Browse files

Fix rich media relative path

parent bd89cdbe
No related branches found
No related tags found
No related merge requests found
......@@ -184,6 +184,11 @@ defmodule Pleroma.Web.MastodonAPI.StatusView do
def render("card.json", %{rich_media: rich_media, page_url: page_url}) do
page_url = rich_media[:url] || page_url
page_url_data = URI.parse(page_url)
image_url =
URI.merge(page_url_data, URI.parse(rich_media[:image]))
|> to_string
site_name = rich_media[:site_name] || page_url_data.host
%{
......@@ -191,7 +196,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusView do
provider_name: site_name,
provider_url: page_url_data.scheme <> "://" <> page_url_data.host,
url: page_url,
image: rich_media[:image] |> MediaProxy.url(),
image: image_url |> MediaProxy.url(),
title: rich_media[:title],
description: rich_media[:description],
pleroma: %{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment