Fix compile

This commit is contained in:
Mark Felder 2019-02-12 00:25:12 +00:00
parent ac7ef0999d
commit 4956ab5ea3
1 changed files with 1 additions and 6 deletions

View File

@ -69,8 +69,6 @@ defp build_attachments(%{data: %{"attachment" => attachments}}) do
Enum.reduce(attachments, [], fn attachment, acc -> Enum.reduce(attachments, [], fn attachment, acc ->
rendered_tags = rendered_tags =
Enum.reduce(attachment["url"], [], fn url, acc -> Enum.reduce(attachment["url"], [], fn url, acc ->
content_type = url["mediaType"]
media_type = media_type =
Enum.find(["image", "audio", "video"], fn media_type -> Enum.find(["image", "audio", "video"], fn media_type ->
String.starts_with?(url["mediaType"], media_type) String.starts_with?(url["mediaType"], media_type)
@ -92,10 +90,7 @@ defp build_attachments(%{data: %{"attachment" => attachments}}) do
{:meta, {:meta,
[ [
property: "twitter:player", property: "twitter:player",
content: content: Utils.attachment_url(url["href"])
Utils.attachment_url(
Pleroma.Uploaders.Uploader.preview_url(content_type, url["href"])
)
], []} ], []}
| acc | acc
] ]