lib/onebox/engine/coub_onebox.rb in onebox-1.8.79 vs lib/onebox/engine/coub_onebox.rb in onebox-1.8.80
- old
+ new
@@ -7,15 +7,14 @@
matches_regexp(/^https?:\/\/coub\.com\/view\//)
always_https
def placeholder_html
oembed = get_oembed
- escaped_src = ::Onebox::Helpers.normalize_url_for_output(oembed[:thumbnail_url])
- "<img src='#{escaped_src}' height='#{oembed[:thumbnail_height]}' width='#{oembed[:thumbnail_width]}' #{Helpers.title_attr(oembed)}>"
+ "<img src='#{oembed.thumbnail_url}' height='#{oembed.thumbnail_height}' width='#{oembed.thumbnail_width}' #{oembed.title_attr}>"
end
def to_html
- get_oembed[:html]
+ get_oembed.html
end
end
end
end