Skip to content

Commit 4b37d47

Browse files
authored
Add missing xml.text on "title" element for channels RSS (#5320)
1 parent 2c857b5 commit 4b37d47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/invidious/routes/feeds.cr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ module Invidious::Routes::Feeds
202202
xml.element("link", rel: "self", href: "#{HOST_URL}#{env.request.resource}")
203203
xml.element("id") { xml.text "yt:channel:#{ucid}" }
204204
xml.element("yt:channelId") { xml.text ucid }
205-
xml.element("title") { author }
205+
xml.element("title") { xml.text author }
206206
xml.element("link", rel: "alternate", href: "#{HOST_URL}/channel/#{ucid}")
207207

208208
xml.element("author") do

0 commit comments

Comments
 (0)