mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Fix RSS thumbnails
This commit is contained in:
parent
0c8dff162d
commit
e4f397d049
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue