Use with instead of if in the card

This commit is contained in:
rinpatch 2019-02-02 12:04:18 +03:00
parent e4d18f328b
commit 833404f0f5

View file

@ -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