diff options
author | garret <garret1317@yandex.com> | 2024-01-08 17:59:44 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-08 17:59:44 +0000 |
commit | 5af1f19787f7d652fce72dd3ab9536cdd980fe85 (patch) | |
tree | 835937e6695c195082f9ec14bbbc763a1da35747 /yt_dlp/extractor/nhk.py | |
parent | b6951271ac014761c9c317b9cecd5e8e139cfa7c (diff) |
[ie/NhkRadiruLive] Make metadata extraction non-fatal (#8956)
Authored by: garret1317
Diffstat (limited to 'yt_dlp/extractor/nhk.py')
-rw-r--r-- | yt_dlp/extractor/nhk.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/nhk.py b/yt_dlp/extractor/nhk.py index cc3c79174..4b3d185a3 100644 --- a/yt_dlp/extractor/nhk.py +++ b/yt_dlp/extractor/nhk.py @@ -665,7 +665,7 @@ class NhkRadiruLiveIE(InfoExtractor): noa_info = self._download_json( f'https:{config.find(".//url_program_noa").text}'.format(area=data.find('areakey').text), - station, note=f'Downloading {area} station metadata') + station, note=f'Downloading {area} station metadata', fatal=False) present_info = traverse_obj(noa_info, ('nowonair_list', self._NOA_STATION_IDS.get(station), 'present')) return { |