[YoutubeDL] Do not override ie_key in url_transparent

This commit is contained in:
Yen Chi Hsuan 2016-02-01 17:05:48 +08:00
parent bd93a12e85
commit b286f201a8
2 changed files with 38 additions and 2 deletions

View file

@ -707,7 +707,6 @@ class YoutubeDL(object):
It will also download the videos if 'download'.
Returns the resolved ie_result.
"""
result_type = ie_result.get('_type', 'video')
if result_type in ('url', 'url_transparent'):
@ -736,7 +735,7 @@ class YoutubeDL(object):
force_properties = dict(
(k, v) for k, v in ie_result.items() if v is not None)
for f in ('_type', 'url'):
for f in ('_type', 'url', 'ie_key'):
if f in force_properties:
del force_properties[f]
new_result = info.copy()