diff --git a/plugins/lazy-yt/plugin.rb b/plugins/lazy-yt/plugin.rb index 06b25ce427e..b0ed271e360 100644 --- a/plugins/lazy-yt/plugin.rb +++ b/plugins/lazy-yt/plugin.rb @@ -22,8 +22,11 @@ class Onebox::Engine::YoutubeOnebox def to_html if video_id && !params['list'] - video_width = (params['width'] && params['width'].to_i <= 695) ? params['width'] : 480 # embed width - video_height = (params['height'] && params['height'].to_i <= 500) ? params['height'] : 270 # embed height + + size_restricted = [params['width'], params['height']].any? + video_width = (params['width'] && params['width'].to_i <= 695) ? params['width'] : 690 # embed width + video_height = (params['height'] && params['height'].to_i <= 500) ? params['height'] : 388 # embed height + size_tags = ["width=\"#{video_width}\"", "height=\"#{video_height}\""] og = get_opengraph.data thumbnail_url = og[:image] || "https://img.youtube.com/vi/#{video_id}/hqdefault.jpg" @@ -35,11 +38,13 @@ class Onebox::Engine::YoutubeOnebox
- +
EOF