From: William Pitcock Date: Tue, 5 Feb 2019 18:30:27 +0000 (+0000) Subject: mastodon api: fix rendering of cards without image URLs (closes #597) X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=1d94b67e409010e4da20b4d325813390d9d8bb73;p=akkoma mastodon api: fix rendering of cards without image URLs (closes #597) --- diff --git a/lib/pleroma/web/mastodon_api/views/status_view.ex b/lib/pleroma/web/mastodon_api/views/status_view.ex index d1b11d4f1..c0e289ef8 100644 --- a/lib/pleroma/web/mastodon_api/views/status_view.ex +++ b/lib/pleroma/web/mastodon_api/views/status_view.ex @@ -192,8 +192,12 @@ defmodule Pleroma.Web.MastodonAPI.StatusView do page_url = page_url_data |> to_string image_url = - URI.merge(page_url_data, URI.parse(rich_media[:image])) - |> to_string + if rich_media[:image] != nil do + URI.merge(page_url_data, URI.parse(rich_media[:image])) + |> to_string + else + nil + end site_name = rich_media[:site_name] || page_url_data.host