OGP/TwitterCard: Add fallbacks in case the attachment key is nonexistent

This commit is contained in:
rinpatch 2019-07-08 12:16:32 +03:00
parent 3589b30ddc
commit 7f609ee8f4
2 changed files with 3 additions and 0 deletions

View file

@ -121,4 +121,6 @@ defmodule Pleroma.Web.Metadata.Providers.OpenGraph do
acc ++ rendered_tags
end)
end
defp build_attachments(_), do: []
end

View file

@ -116,6 +116,7 @@ defmodule Pleroma.Web.Metadata.Providers.TwitterCard do
acc ++ rendered_tags
end)
end
defp build_attachments(_id, _object), do: []
defp player_url(id) do
Pleroma.Web.Router.Helpers.o_status_url(Pleroma.Web.Endpoint, :notice_player, id)