forked from AkkomaGang/akkoma
Lint
This commit is contained in:
parent
86bcb87e6c
commit
2a47156b87
2 changed files with 11 additions and 8 deletions
|
@ -37,7 +37,8 @@ def build_tags(%{
|
||||||
] ++
|
] ++
|
||||||
if attachments == [] or Metadata.activity_nsfw?(object) do
|
if attachments == [] or Metadata.activity_nsfw?(object) do
|
||||||
[
|
[
|
||||||
{:meta, [property: "og:image", content: MediaProxy.preview_url(User.avatar_url(user))], []},
|
{:meta, [property: "og:image", content: MediaProxy.preview_url(User.avatar_url(user))],
|
||||||
|
[]},
|
||||||
{:meta, [property: "og:image:width", content: 150], []},
|
{:meta, [property: "og:image:width", content: 150], []},
|
||||||
{:meta, [property: "og:image:height", content: 150], []}
|
{:meta, [property: "og:image:height", content: 150], []}
|
||||||
]
|
]
|
||||||
|
@ -58,7 +59,8 @@ def build_tags(%{user: user}) do
|
||||||
{:meta, [property: "og:url", content: user.uri || user.ap_id], []},
|
{:meta, [property: "og:url", content: user.uri || user.ap_id], []},
|
||||||
{:meta, [property: "og:description", content: truncated_bio], []},
|
{:meta, [property: "og:description", content: truncated_bio], []},
|
||||||
{:meta, [property: "og:type", content: "article"], []},
|
{:meta, [property: "og:type", content: "article"], []},
|
||||||
{:meta, [property: "og:image", content: MediaProxy.preview_url(User.avatar_url(user))], []},
|
{:meta, [property: "og:image", content: MediaProxy.preview_url(User.avatar_url(user))],
|
||||||
|
[]},
|
||||||
{:meta, [property: "og:image:width", content: 150], []},
|
{:meta, [property: "og:image:width", content: 150], []},
|
||||||
{:meta, [property: "og:image:height", content: 150], []}
|
{:meta, [property: "og:image:height", content: 150], []}
|
||||||
]
|
]
|
||||||
|
@ -130,11 +132,11 @@ defp maybe_add_video_thumbnail(metadata, url) do
|
||||||
cond do
|
cond do
|
||||||
Pleroma.Config.get([:media_preview_proxy, :enabled], false) ->
|
Pleroma.Config.get([:media_preview_proxy, :enabled], false) ->
|
||||||
metadata ++
|
metadata ++
|
||||||
[
|
[
|
||||||
{:meta, [property: "og:image:width", content: "#{url["width"]}"], []},
|
{:meta, [property: "og:image:width", content: "#{url["width"]}"], []},
|
||||||
{:meta, [property: "og:image:height", content: "#{url["height"]}"], []},
|
{:meta, [property: "og:image:height", content: "#{url["height"]}"], []},
|
||||||
{:meta, [property: "og:image", content: MediaProxy.preview_url(url["href"])], []}
|
{:meta, [property: "og:image", content: MediaProxy.preview_url(url["href"])], []}
|
||||||
]
|
]
|
||||||
|
|
||||||
true ->
|
true ->
|
||||||
metadata
|
metadata
|
||||||
|
|
|
@ -93,7 +93,8 @@ defp build_attachments(id, %{data: %{"attachment" => attachments}}) do
|
||||||
{:meta, [property: "twitter:player", content: player_url(id)], []},
|
{:meta, [property: "twitter:player", content: player_url(id)], []},
|
||||||
{:meta, [property: "twitter:player:width", content: "#{width}"], []},
|
{:meta, [property: "twitter:player:width", content: "#{width}"], []},
|
||||||
{:meta, [property: "twitter:player:height", content: "#{height}"], []},
|
{:meta, [property: "twitter:player:height", content: "#{height}"], []},
|
||||||
{:meta, [property: "twitter:player:stream", content: MediaProxy.url(url["href"])], []},
|
{:meta, [property: "twitter:player:stream", content: MediaProxy.url(url["href"])],
|
||||||
|
[]},
|
||||||
{:meta,
|
{:meta,
|
||||||
[property: "twitter:player:stream:content_type", content: url["mediaType"]], []}
|
[property: "twitter:player:stream:content_type", content: url["mediaType"]], []}
|
||||||
| acc
|
| acc
|
||||||
|
|
Loading…
Reference in a new issue