Fix searches where items don't have byline

pull/91/head
Omar Roth 6 years ago
parent a29458e32f
commit 7d6bc671c2

@ -35,7 +35,10 @@ def search(query, page = 1, search_params = build_search_params(content_type: "v
title = anchor.content.strip title = anchor.content.strip
video_id = anchor["href"].lchop("/watch?v=") video_id = anchor["href"].lchop("/watch?v=")
anchor = node.xpath_node(%q(.//div[contains(@class, "yt-lockup-byline")]/a)).not_nil! anchor = node.xpath_node(%q(.//div[contains(@class, "yt-lockup-byline")]/a))
if !anchor
next
end
author = anchor.content author = anchor.content
author_url = anchor["href"] author_url = anchor["href"]
ucid = author_url.split("/")[-1] ucid = author_url.split("/")[-1]

Loading…
Cancel
Save