mirror of
https://git.sr.ht/~cadence/NewLeaf
synced 2024-11-24 16:37:29 +00:00
Fix channel extraction when subscribers not available
This commit is contained in:
parent
10f8009101
commit
e95d814709
@ -26,7 +26,7 @@ def extract_channel(ucid):
|
||||
author = header["title"]
|
||||
author_id = header["channelId"]
|
||||
author_url = header["navigationEndpoint"]["commandMetadata"]["webCommandMetadata"]["url"]
|
||||
subscriber_count = combine_runs(header["subscriberCountText"])
|
||||
subscriber_count = combine_runs(header["subscriberCountText"]) if "subscribeCountText" in header else "Unknown subscribers"
|
||||
description = yt_initial_data["metadata"]["channelMetadataRenderer"]["description"]
|
||||
allowed_regions = yt_initial_data["metadata"]["channelMetadataRenderer"]["availableCountryCodes"]
|
||||
|
||||
|
@ -128,6 +128,8 @@ def normalise_url_protocol(url):
|
||||
return url
|
||||
|
||||
def uncompress_counter(text):
|
||||
if text.lower() == "no" or text.lower() == "unknown":
|
||||
return 0
|
||||
last = text[-1:].lower()
|
||||
if last >= "0" and last <= "9":
|
||||
return int(last)
|
||||
|
Loading…
Reference in New Issue
Block a user