mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
Add fix for livestreams in search results
This commit is contained in:
parent
6bb747b579
commit
567b9f31f3
1 changed files with 7 additions and 2 deletions
|
@ -303,9 +303,14 @@ def extract_videos(nodeset, ucid = nil)
|
||||||
published = Time.epoch(metadata[0].xpath_node(%q(.//span)).not_nil!["data-timestamp"].to_i64)
|
published = Time.epoch(metadata[0].xpath_node(%q(.//span)).not_nil!["data-timestamp"].to_i64)
|
||||||
else
|
else
|
||||||
# Livestream
|
# Livestream
|
||||||
view_count = metadata[0].content.delete("Streamed, watching").to_i64
|
if metadata[0].content.starts_with? "Streamed "
|
||||||
|
view_count = 0_i64
|
||||||
|
published = decode_date(metadata[0].content.lchop("Streamed "))
|
||||||
|
else
|
||||||
|
view_count = metadata[0].content.delete(" watching,").to_i64
|
||||||
published = Time.now
|
published = Time.now
|
||||||
end
|
end
|
||||||
|
end
|
||||||
else
|
else
|
||||||
published = decode_date(metadata[0].content)
|
published = decode_date(metadata[0].content)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue