mirror of
https://git.youjo.love/youjo/youjo-be.git
synced 2024-11-20 13:59:55 +01:00
Fix incorrectly ordered arguments to the function and not properly merging lists.
This commit is contained in:
parent
dc8fe91dec
commit
86bcb87e6c
1 changed files with 2 additions and 1 deletions
|
@ -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"]}"], []},
|
||||
|
|
Loading…
Reference in a new issue