1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-29 07:09:33 +00:00

[downloader/external] Use the 'http_headers' field

This commit is contained in:
Jaime Marquínez Ferrándiz 2015-01-24 18:25:09 +01:00
parent e1554a407d
commit 587a9c2749

View file

@ -49,9 +49,9 @@ class ExternalFD(FileDownloader):
def _calc_headers(self, info_dict): def _calc_headers(self, info_dict):
res = std_headers.copy() res = std_headers.copy()
ua = info_dict.get('user_agent') add_headers = info_dict.get('http_headers')
if ua is not None: if add_headers:
res['User-Agent'] = ua res.update(add_headers)
cookies = self._calc_cookies(info_dict) cookies = self._calc_cookies(info_dict)
if cookies: if cookies: