From e4f397d049e064d5efc13c4ec25b63efce33d6d3 Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Wed, 27 Feb 2019 16:18:47 -0600 Subject: [PATCH] Fix RSS thumbnails --- src/invidious.cr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/invidious.cr b/src/invidious.cr index 25b0252b..78c7c6e1 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -2024,7 +2024,7 @@ get "/feed/channel/:ucid" do |env| xml.element("media:group") do xml.element("media:title") { xml.text video.title } - xml.element("media:thumbnail", url: "/vi/#{video.id}/mqdefault.jpg", + xml.element("media:thumbnail", url: "#{host_url}/vi/#{video.id}/mqdefault.jpg", width: "320", height: "180") xml.element("media:description") { xml.text video.description } end @@ -2140,7 +2140,7 @@ get "/feed/private" do |env| xml.element("media:group") do xml.element("media:title") { xml.text video.title } - xml.element("media:thumbnail", url: "/vi/#{video.id}/mqdefault.jpg", + xml.element("media:thumbnail", url: "#{host_url}/vi/#{video.id}/mqdefault.jpg", width: "320", height: "180") end end