mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-05 17:11:19 +00:00
Merge pull request #5116 from yan12125/letv_fix
[Letv] Fix test_Letv and test_Letv_1 failures in python 3
This commit is contained in:
commit
cf47794f09
1 changed files with 4 additions and 3 deletions
|
@ -88,9 +88,10 @@ class LetvIE(InfoExtractor):
|
||||||
play_json_req = compat_urllib_request.Request(
|
play_json_req = compat_urllib_request.Request(
|
||||||
'http://api.letv.com/mms/out/video/playJson?' + compat_urllib_parse.urlencode(params)
|
'http://api.letv.com/mms/out/video/playJson?' + compat_urllib_parse.urlencode(params)
|
||||||
)
|
)
|
||||||
play_json_req.add_header(
|
cn_verification_proxy = self._downloader.params.get('cn_verification_proxy')
|
||||||
'Ytdl-request-proxy',
|
if cn_verification_proxy:
|
||||||
self._downloader.params.get('cn_verification_proxy'))
|
play_json_req.add_header('Ytdl-request-proxy', cn_verification_proxy)
|
||||||
|
|
||||||
play_json = self._download_json(
|
play_json = self._download_json(
|
||||||
play_json_req,
|
play_json_req,
|
||||||
media_id, 'playJson data')
|
media_id, 'playJson data')
|
||||||
|
|
Loading…
Reference in a new issue