Browse Source

Fix saving of oEmbed image (#6409)

pull/4/head
abcang 6 years ago
committed by Eugen Rochko
parent
commit
7e5c433dfc
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      app/services/fetch_link_card_service.rb

+ 5
- 5
app/services/fetch_link_card_service.rb View File

@ -91,13 +91,13 @@ class FetchLinkCardService < BaseService
case @card.type
when 'link'
@card.image = URI.parse(embed.thumbnail_url) if embed.respond_to?(:thumbnail_url)
@card.image_remote_url = embed.thumbnail_url if embed.respond_to?(:thumbnail_url)
when 'photo'
return false unless embed.respond_to?(:url)
@card.embed_url = embed.url
@card.image = URI.parse(embed.url)
@card.width = embed.width.presence || 0
@card.height = embed.height.presence || 0
@card.embed_url = embed.url
@card.image_remote_url = embed.url
@card.width = embed.width.presence || 0
@card.height = embed.height.presence || 0
when 'video'
@card.width = embed.width.presence || 0
@card.height = embed.height.presence || 0

Loading…
Cancel
Save