mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 23:02:40 +00:00
[ie/NhkRadiruLive] Make metadata extraction non-fatal (#8956)
Authored by: garret1317
This commit is contained in:
parent
b6951271ac
commit
5af1f19787
1 changed files with 1 additions and 1 deletions
|
@ -665,7 +665,7 @@ def _real_extract(self, url):
|
|||
|
||||
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 {
|
||||
|
|
Loading…
Reference in a new issue