diff options
Diffstat (limited to 'yt_dlp/extractor/abc.py')
-rw-r--r-- | yt_dlp/extractor/abc.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/yt_dlp/extractor/abc.py b/yt_dlp/extractor/abc.py index 354453a27..0dde4a9a5 100644 --- a/yt_dlp/extractor/abc.py +++ b/yt_dlp/extractor/abc.py @@ -300,11 +300,10 @@ class ABCIViewShowSeriesIE(InfoExtractor): unescapeHTML(webpage_data).encode('utf-8').decode('unicode_escape'), show_id) video_data = video_data['route']['pageData']['_embedded'] - if self.get_param('noplaylist') and 'highlightVideo' in video_data: - self.to_screen('Downloading just the highlight video because of --no-playlist') - return self.url_result(video_data['highlightVideo']['shareUrl'], ie=ABCIViewIE.ie_key()) + highlight = try_get(video_data, lambda x: ['highlightVideo']['shareUrl']) + if not self._yes_playlist(show_id, bool(highlight), video_label='highlight video'): + return self.url_result(highlight, ie=ABCIViewIE.ie_key()) - self.to_screen(f'Downloading playlist {show_id} - add --no-playlist to just download the highlight video') series = video_data['selectedSeries'] return { '_type': 'playlist', |