mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-03-16.git
synced 2024-08-15 00:53:18 +00:00
Add content element to RSS feeds
This commit is contained in:
parent
ea52c05f05
commit
2fe545e19a
1 changed files with 16 additions and 0 deletions
|
@ -2020,6 +2020,14 @@ get "/feed/channel/:ucid" do |env|
|
|||
end
|
||||
end
|
||||
|
||||
xml.element("content", type: "xhtml") do
|
||||
xml.element("div", xmlns: "http://www.w3.org/1999/xhtml") do
|
||||
xml.element("a", href: "#{host_url}/watch?v=#{video.id}") do
|
||||
xml.element("img", src: "#{host_url}/vi/#{video.id}/mqdefault.jpg")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
xml.element("published") { xml.text video.published.to_s("%Y-%m-%dT%H:%M:%S%:z") }
|
||||
|
||||
xml.element("media:group") do
|
||||
|
@ -2135,6 +2143,14 @@ get "/feed/private" do |env|
|
|||
xml.element("uri") { xml.text "#{host_url}/channel/#{video.ucid}" }
|
||||
end
|
||||
|
||||
xml.element("content", type: "xhtml") do
|
||||
xml.element("div", xmlns: "http://www.w3.org/1999/xhtml") do
|
||||
xml.element("a", href: "#{host_url}/watch?v=#{video.id}") do
|
||||
xml.element("img", src: "#{host_url}/vi/#{video.id}/mqdefault.jpg")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
xml.element("published") { xml.text video.published.to_s("%Y-%m-%dT%H:%M:%S%:z") }
|
||||
xml.element("updated") { xml.text video.updated.to_s("%Y-%m-%dT%H:%M:%S%:z") }
|
||||
|
||||
|
|
Loading…
Reference in a new issue