Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pleroma
pleroma
Commits
5f7901cc
Commit
5f7901cc
authored
Jun 09, 2021
by
feld
Browse files
Credo
parent
2a47156b
Pipeline
#36533
passed with stages
in 10 minutes and 40 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
lib/pleroma/web/metadata/providers/open_graph.ex
View file @
5f7901cc
...
...
@@ -80,10 +80,11 @@ defp build_attachments(%{data: %{"attachment" => attachments}}) do
|
acc
]
# Not using preview_url for this. It saves bandwidth, but the image dimensions will be wrong.
# We generate it on the fly and have no way to capture or analyze the image to get the dimensions.
# This can be an issue for apps/FEs rendering images in timelines too, but you can get clever with
# the aspect ratio metadata as a workaround.
# Not using preview_url for this. It saves bandwidth, but the image dimensions will
# be wrong. We generate it on the fly and have no way to capture or analyze the
# analyze the image to get the dimensions. This can be an issue for apps/FEs
# rendering images in timelines too, but you can get clever with the aspect ratio
# metadata as a workaround.
"image"
->
[
{
:meta
,
[
property:
"og:image"
,
content:
MediaProxy
.
url
(
url
[
"href"
])],
[]},
...
...
lib/pleroma/web/metadata/providers/twitter_card.ex
View file @
5f7901cc
...
...
@@ -67,10 +67,11 @@ defp build_attachments(id, %{data: %{"attachment" => attachments}}) do
|
acc
]
# Not using preview_url for this. It saves bandwidth, but the image dimensions will be wrong.
# We generate it on the fly and have no way to capture or analyze the image to get the dimensions.
# This can be an issue for apps/FEs rendering images in timelines too, but you can get clever with
# the aspect ratio metadata as a workaround.
# Not using preview_url for this. It saves bandwidth, but the image dimensions will
# be wrong. We generate it on the fly and have no way to capture or analyze the
# analyze the image to get the dimensions. This can be an issue for apps/FEs
# rendering images in timelines too, but you can get clever with the aspect ratio
# metadata as a workaround.
"image"
->
[
{
:meta
,
[
property:
"twitter:card"
,
content:
"summary_large_image"
],
[]},
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment