Merge pull request #3248 from iv-org/fix-cookies

This commit is contained in:
Samantaz Fox 2022-08-07 01:33:11 +02:00
commit b0be2237fa
No known key found for this signature in database
GPG Key ID: F42821059186176E
1 changed files with 6 additions and 0 deletions

View File

@ -204,6 +204,12 @@ module Invidious::Routes::Feeds
xml.element("uri") { xml.text "#{HOST_URL}/channel/#{channel.ucid}" }
end
xml.element("image") do
xml.element("url") { xml.text channel.author_thumbnail }
xml.element("title") { xml.text channel.author }
xml.element("link", rel: "self", href: "#{HOST_URL}#{env.request.resource}")
end
videos.each do |video|
video.to_xml(channel.auto_generated, params, xml)
end