From ef8deb08784948975f59ce2311b79e5ac85b1307 Mon Sep 17 00:00:00 2001 From: Claire Date: Sat, 13 Nov 2021 03:30:27 +0100 Subject: [PATCH] Fix OpenGraph/LinkedData embeds having incorrectly-generated iframes (#16978) --- app/lib/link_details_extractor.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/link_details_extractor.rb b/app/lib/link_details_extractor.rb index 9df8a1320..3876173e0 100644 --- a/app/lib/link_details_extractor.rb +++ b/app/lib/link_details_extractor.rb @@ -91,7 +91,7 @@ class LinkDetailsExtractor end def html - player_url.present? ? content_tag(:iframe, src: player_url, width: width, height: height, allowtransparency: 'true', scrolling: 'no', frameborder: '0') : nil + player_url.present? ? content_tag(:iframe, nil, src: player_url, width: width, height: height, allowtransparency: 'true', scrolling: 'no', frameborder: '0') : nil end def width