mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 03:48:23 +00:00
FIX: vimeo iframe url when data-original-href is missing (#18894)
This commit is contained in:
parent
bdf8815b71
commit
96a6bb69b5
@ -527,7 +527,7 @@ module PrettyText
|
||||
if iframe["data-original-href"].present?
|
||||
vimeo_url = UrlHelper.normalized_encode(iframe["data-original-href"])
|
||||
else
|
||||
vimeo_id = iframe["src"].split("/").last
|
||||
vimeo_id = iframe["src"].split("/").last.sub("?h=", "/")
|
||||
vimeo_url = "https://vimeo.com/#{vimeo_id}"
|
||||
end
|
||||
iframe.replace Nokogiri::HTML5.fragment("<p><a href='#{vimeo_url}'>#{vimeo_url}</a></p>")
|
||||
|
@ -1298,6 +1298,14 @@ RSpec.describe PrettyText do
|
||||
)
|
||||
end
|
||||
|
||||
it "creates a valid URL when data-original-href is missing from Vimeo link" do
|
||||
html =
|
||||
'<iframe src="https://player.vimeo.com/video/508864124?h=fcbbcc92fa" width="640" height="360" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe>'
|
||||
expect(PrettyText.format_for_email(html, post)).to match(
|
||||
"https://vimeo.com/508864124/fcbbcc92fa",
|
||||
)
|
||||
end
|
||||
|
||||
describe "#convert_vimeo_iframes" do
|
||||
it "converts <iframe> to <a>" do
|
||||
html = <<~HTML
|
||||
|
Loading…
x
Reference in New Issue
Block a user