mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
Use sidebar for pulling subscriptions
This commit is contained in:
parent
6d3e88aeb5
commit
d1841b9be5
1 changed files with 6 additions and 4 deletions
|
@ -621,11 +621,13 @@ def fetch_user(sid, client, headers)
|
||||||
feed = XML.parse_html(feed.body)
|
feed = XML.parse_html(feed.body)
|
||||||
|
|
||||||
channels = [] of String
|
channels = [] of String
|
||||||
feed.xpath_nodes(%q(//a[@class="subscription-title yt-uix-sessionlink"]/@href)).each do |channel|
|
feed.xpath_nodes(%q(//ul[@id="guide-channels"]/li/a)).each do |channel|
|
||||||
channel_id = channel.content.lstrip("/channel/").not_nil!
|
if !["Popular on YouTube", "Music", "Sports", "Gaming"].includes? channel["title"]
|
||||||
get_channel(channel_id, client, PG_DB)
|
channel_id = channel["href"].lstrip("/channel/").not_nil!
|
||||||
|
get_channel(channel_id, client, PG_DB)
|
||||||
|
|
||||||
channels << channel_id
|
channels << channel_id
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
email = feed.xpath_node(%q(//a[@class="yt-masthead-picker-header yt-masthead-picker-active-account"]))
|
email = feed.xpath_node(%q(//a[@class="yt-masthead-picker-header yt-masthead-picker-active-account"]))
|
||||||
|
|
Loading…
Reference in a new issue