Skip to content

Commit

Permalink
[ie/NhkRadiruLive] Make metadata extraction non-fatal (yt-dlp#8956)
Browse files Browse the repository at this point in the history
Authored by: garret1317
  • Loading branch information
garret1317 authored Jan 8, 2024
1 parent b695127 commit 5af1f19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp/extractor/nhk.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 5af1f19

Please sign in to comment.