mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-02 08:53:13 +05:30
Add fix for videos without metadata
This commit is contained in:
parent
ec399f5f7b
commit
bce01cba32
@ -328,7 +328,9 @@ def extract_videos(nodeset, ucid = nil)
|
|||||||
end
|
end
|
||||||
|
|
||||||
metadata = node.xpath_nodes(%q(.//div[contains(@class,"yt-lockup-meta")]/ul/li))
|
metadata = node.xpath_nodes(%q(.//div[contains(@class,"yt-lockup-meta")]/ul/li))
|
||||||
if metadata.size == 1
|
if metadata.size == 0
|
||||||
|
next
|
||||||
|
elsif metadata.size == 1
|
||||||
# Scheduled livestream
|
# Scheduled livestream
|
||||||
if metadata[0].content.starts_with? "Starts"
|
if metadata[0].content.starts_with? "Starts"
|
||||||
view_count = 0_i64
|
view_count = 0_i64
|
||||||
|
Loading…
Reference in New Issue
Block a user