mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-10 06:54:12 +00:00
also consider opengraph image for local thumbnail generation
This commit is contained in:
parent
09bc56bbd2
commit
d0252c3893
1 changed files with 6 additions and 6 deletions
|
@ -103,12 +103,12 @@ pub fn generate_post_link_metadata(
|
|||
else if federated_thumbnail.is_some() {
|
||||
federated_thumbnail
|
||||
}
|
||||
// Generate local thumbnail if allowed and post.url is Some
|
||||
else if let (true, Some(url)) = (allow_generate_thumbnail, &post.url) {
|
||||
generate_pictrs_thumbnail(url, &context)
|
||||
.await
|
||||
.ok()
|
||||
.map(Into::into)
|
||||
// Generate local thumbnail if allowed
|
||||
else if allow_generate_thumbnail {
|
||||
match post.url.or(metadata.opengraph_data.image) {
|
||||
Some(url) => generate_pictrs_thumbnail(&url, &context).await.ok(),
|
||||
None => None,
|
||||
}
|
||||
}
|
||||
// Otherwise use opengraph preview image directly
|
||||
else {
|
||||
|
|
Loading…
Reference in a new issue