Fix incorrectly ordered arguments to the function and not properly merging lists.

This commit is contained in:
Mark Felder 2021-06-09 11:05:24 -05:00
parent dc8fe91dec
commit 86bcb87e6c
1 changed files with 2 additions and 1 deletions

View File

@ -126,9 +126,10 @@ defmodule Pleroma.Web.Metadata.Providers.OpenGraph do
end
end
defp maybe_add_video_thumbnail(url, metadata) do
defp maybe_add_video_thumbnail(metadata, url) do
cond do
Pleroma.Config.get([:media_preview_proxy, :enabled], false) ->
metadata ++
[
{:meta, [property: "og:image:width", content: "#{url["width"]}"], []},
{:meta, [property: "og:image:height", content: "#{url["height"]}"], []},