Add support for genre channels that don't end with " - Topic"

This commit is contained in:
Omar Roth 2018-09-09 08:53:04 -05:00
parent 8c45694ce5
commit 133b72f9cf
2 changed files with 9 additions and 5 deletions

View file

@ -140,7 +140,7 @@ def fetch_user(sid, client, headers, db)
channels = [] of String
feed.xpath_nodes(%q(//ul[@id="guide-channels"]/li/a)).each do |channel|
if !["Popular on YouTube", "Music", "Sports", "Gaming"].includes? channel["title"]
if !{"Popular on YouTube", "Music", "Sports", "Gaming"}.includes? channel["title"]
channel_id = channel["href"].lstrip("/channel/")
begin