Use https for storyboard image requests

pull/2364/head
syeopite 3 years ago
parent 547abe17d9
commit 814c9e6c3a
No known key found for this signature in database
GPG Key ID: 6FA616E5A5294A82

@ -113,13 +113,13 @@ module Invidious::Routes::Images
return request_proc.call(resp)
end
else
HTTP::Client.get("#{authority}.ytimg.com#{url}") do |resp|
HTTP::Client.get("https://#{authority}.ytimg.com#{url}") do |resp|
return request_proc.call(resp)
end
end
{% else %}
# This can likely be optimized into a (small) pool sometime in the future.
HTTP::Client.get("#{authority}.ytimg.com#{url}") do |resp|
HTTP::Client.get("https://#{authority}.ytimg.com#{url}") do |resp|
return request_proc.call(resp)
end
{% end %}
@ -175,13 +175,13 @@ module Invidious::Routes::Images
return request_proc.call(resp)
end
else
HTTP::Client.get("i9.ytimg.com#{url}") do |resp|
HTTP::Client.get("https://i9.ytimg.com#{url}") do |resp|
return request_proc.call(resp)
end
end
{% else %}
# This can likely be optimized into a (small) pool sometime in the future.
HTTP::Client.get("i9.ytimg.com#{url}") do |resp|
HTTP::Client.get("https://i9.ytimg.com#{url}") do |resp|
return request_proc.call(resp)
end
{% end %}

Loading…
Cancel
Save