[youtube] Improve description extraction (closes #25937) (#25980)

This commit is contained in:
MRWITEK 2020-07-14 14:01:15 +03:00 committed by tsia
parent 6fcbdc54a0
commit 39db658554

View File

@ -1930,7 +1930,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
''', replace_url, video_description)
video_description = clean_html(video_description)
else:
video_description = self._html_search_meta('description', video_webpage) or video_details.get('shortDescription')
video_description = video_details.get('shortDescription') or self._html_search_meta('description', video_webpage)
if not smuggled_data.get('force_singlefeed', False):
if not self._downloader.params.get('noplaylist'):