mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[downloader/ism] Honor HTTP headers when downloading fragments
This commit is contained in:
parent
553f6dbac7
commit
de64e23c56
1 changed files with 4 additions and 1 deletions
|
@ -238,7 +238,10 @@ def real_download(self, filename, info_dict):
|
|||
count = 0
|
||||
while count <= fragment_retries:
|
||||
try:
|
||||
success = ctx['dl'].download(target_filename, {'url': segment_url})
|
||||
success = ctx['dl'].download(target_filename, {
|
||||
'url': segment_url,
|
||||
'http_headers': info_dict.get('http_headers'),
|
||||
})
|
||||
if not success:
|
||||
return False
|
||||
down, target_sanitized = sanitize_open(target_filename, 'rb')
|
||||
|
|
Loading…
Reference in a new issue