1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-10 16:47:21 +08:00

YoutubeEntryListBaseInfoExtractor fix url

YoutubeEntryListBaseInfoExtractor uses https://youtube.com instead of https://www.youtube.com.
All other references use https://www.youtube.com
This commit is contained in:
sperfect 2018-12-06 13:15:55 +02:00 committed by GitHub
parent 8bb0c9cc16
commit 1c9bad76e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -287,7 +287,7 @@ class YoutubeEntryListBaseInfoExtractor(YoutubeBaseInfoExtractor):
break
more = self._download_json(
'https://youtube.com/%s' % mobj.group('more'), playlist_id,
'https://www.youtube.com/%s' % mobj.group('more'), playlist_id,
'Downloading page #%s' % page_num,
transform_source=uppercase_escape)
content_html = more['content_html']