mirror of
https://github.com/ReviveMii/riivivetube
synced 2025-09-02 19:41:07 +02:00
fix trending 0 views bug
This commit is contained in:
parent
2998f443df
commit
172c7e7c86
@ -282,6 +282,7 @@ def innertube_trending(trending_type=None, region="US", max_results=50):
|
|||||||
author = vd.get("ownerText", {}).get("runs", [{}])[0].get("text", "")
|
author = vd.get("ownerText", {}).get("runs", [{}])[0].get("text", "")
|
||||||
thumbnails = vd.get("thumbnail", {}).get("thumbnails", [])
|
thumbnails = vd.get("thumbnail", {}).get("thumbnails", [])
|
||||||
view_count_text = vd.get("viewCountText", {}).get("simpleText", "")
|
view_count_text = vd.get("viewCountText", {}).get("simpleText", "")
|
||||||
|
view_count = parse_view_count(view_count_text)
|
||||||
published_text = vd.get("publishedTimeText", {}).get("simpleText", "")
|
published_text = vd.get("publishedTimeText", {}).get("simpleText", "")
|
||||||
length_text_obj, length_seconds = extract_length_text_and_seconds(vd)
|
length_text_obj, length_seconds = extract_length_text_and_seconds(vd)
|
||||||
return {
|
return {
|
||||||
@ -289,7 +290,7 @@ def innertube_trending(trending_type=None, region="US", max_results=50):
|
|||||||
"videoId": vid,
|
"videoId": vid,
|
||||||
"author": author,
|
"author": author,
|
||||||
"videoThumbnails": thumbnails,
|
"videoThumbnails": thumbnails,
|
||||||
"viewCountText": view_count_text,
|
"viewCount": view_count,
|
||||||
"publishedText": published_text,
|
"publishedText": published_text,
|
||||||
"lengthText": length_text_obj,
|
"lengthText": length_text_obj,
|
||||||
"lengthSeconds": length_seconds
|
"lengthSeconds": length_seconds
|
||||||
|
Loading…
x
Reference in New Issue
Block a user