Fix OEmbed discovery not handling different URL variants in query (#12439)

Fix #12433
lolsob-rspec
Eugen Rochko 2019-11-21 19:03:07 +01:00 committed by GitHub
parent c6c0b30608
commit 0342c42e05
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ class FetchOEmbedService
url_domain = Addressable::URI.parse(@url).normalized_host
endpoint_hash = {
endpoint: @endpoint_url.gsub(URI.encode_www_form_component(@url), '{url}'),
endpoint: @endpoint_url.gsub(/(=(http[s]?(%3A|:)(\/\/|%2F%2F)))([^&]*)/i, '={url}'),
format: @format,
}