mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
Store preview image for embedded photo in preview cards (#5986)
The preview image would be useful to embed in timeline.
This commit is contained in:
parent
2a61b9f000
commit
f9f6918148
1 changed files with 1 additions and 0 deletions
|
@ -89,6 +89,7 @@ class FetchLinkCardService < BaseService
|
|||
when 'photo'
|
||||
return false unless response.respond_to?(:url)
|
||||
@card.embed_url = response.url
|
||||
@card.image = URI.parse(response.url)
|
||||
@card.width = response.width.presence || 0
|
||||
@card.height = response.height.presence || 0
|
||||
when 'video'
|
||||
|
|
Loading…
Reference in a new issue