mirror of
https://github.com/l1ving/youtube-dl
synced 2025-03-10 20:07:17 +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:
parent
8bb0c9cc16
commit
1c9bad76e5
@ -287,7 +287,7 @@ class YoutubeEntryListBaseInfoExtractor(YoutubeBaseInfoExtractor):
|
|||||||
break
|
break
|
||||||
|
|
||||||
more = self._download_json(
|
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,
|
'Downloading page #%s' % page_num,
|
||||||
transform_source=uppercase_escape)
|
transform_source=uppercase_escape)
|
||||||
content_html = more['content_html']
|
content_html = more['content_html']
|
||||||
|
Loading…
x
Reference in New Issue
Block a user