forked from AkkomaGang/akkoma
OGP/TwitterCard: Add fallbacks in case the attachment key is nonexistent
This commit is contained in:
parent
3589b30ddc
commit
7f609ee8f4
2 changed files with 3 additions and 0 deletions
|
@ -121,4 +121,6 @@ defp build_attachments(%{data: %{"attachment" => attachments}}) do
|
|||
acc ++ rendered_tags
|
||||
end)
|
||||
end
|
||||
|
||||
defp build_attachments(_), do: []
|
||||
end
|
||||
|
|
|
@ -116,6 +116,7 @@ defp build_attachments(id, %{data: %{"attachment" => attachments}}) 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)
|
||||
|
|
Loading…
Reference in a new issue