mirror of
https://gitea.invidious.io/iv-org/invidious.git
synced 2024-08-15 00:53:41 +00:00
Fix YouTube subscription import parser
This commit is contained in:
parent
cb40a74aaf
commit
62e8c09183
1 changed files with 4 additions and 3 deletions
|
@ -1492,9 +1492,10 @@ post "/data_control" do |env|
|
|||
end
|
||||
end
|
||||
when "import_youtube"
|
||||
subscriptions = XML.parse(body)
|
||||
user.subscriptions += subscriptions.xpath_nodes(%q(//outline[@type="rss"])).map do |channel|
|
||||
channel["xmlUrl"].match(/UC[a-zA-Z0-9_-]{22}/).not_nil![0]
|
||||
subscriptions = JSON.parse(body)
|
||||
|
||||
user.subscriptions += subscriptions.as_a.compact_map do |entry|
|
||||
entry["snippet"]["resourceId"]["channelId"].as_s
|
||||
end
|
||||
user.subscriptions.uniq!
|
||||
|
||||
|
|
Loading…
Reference in a new issue