logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git
commit: 2dd6c6edd8e0fc5e45865b8e6d865e35147de772
parent dd9aa74beefc179f943051c4e19eecad87ab1124
Author: dirkf <fieldhouse@gmx.net>
Date:   Fri, 17 Feb 2023 11:16:54 +0000

[YouTube] Avoid crash if uploader_id extraction fails

See #31530.

Diffstat:

Myoutube_dl/extractor/youtube.py4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py @@ -2122,7 +2122,9 @@ class YoutubeIE(YoutubeBaseInfoExtractor): microformat.get('uploadDate') or search_meta('uploadDate')), 'uploader': video_details['author'], - 'uploader_id': self._search_regex(r'/(?:channel|user)/([^/?&#]+)', owner_profile_url, 'uploader id') if owner_profile_url else None, + 'uploader_id': self._search_regex( + r'/(?:channel|user)/([^/?&#]+)', owner_profile_url, + 'uploader id', fatal=False) if owner_profile_url else None, 'uploader_url': owner_profile_url, 'channel_id': channel_id, 'channel_url': 'https://www.youtube.com/channel/' + channel_id if channel_id else None,