mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-08 13:42:27 +05:30
RSS: return 404 if youtube playlist doesnt exist
This commit is contained in:
parent
c5fdd9ea65
commit
1c361ccaa6
@ -311,8 +311,9 @@ module Invidious::Routes::Feeds
|
||||
end
|
||||
|
||||
response = YT_POOL.client &.get("/feeds/videos.xml?playlist_id=#{plid}")
|
||||
document = XML.parse(response.body)
|
||||
return error_atom(404, NotFoundException.new("Playlist does not exist.")) if response.status_code == 404
|
||||
|
||||
document = XML.parse(response.body)
|
||||
document.xpath_nodes(%q(//*[@href]|//*[@url])).each do |node|
|
||||
node.attributes.each do |attribute|
|
||||
case attribute.name
|
||||
|
Loading…
Reference in New Issue
Block a user