Use with instead of if in the card

stable
rinpatch 6 years ago
parent e4d18f328b
commit 833404f0f5

@ -186,9 +186,10 @@ defmodule Pleroma.Web.MastodonAPI.StatusView do
page_url_data = URI.parse(page_url)
image_url =
if %URI{host: nil} = page_url_data do
with %URI{host: nil} <- page_url_data do
rich_media[:image]
else
_ ->
URI.merge(page_url_data, URI.parse(rich_media[:image]))
|> to_string
end

Loading…
Cancel
Save