diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-02-01 17:05:48 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-02-01 17:05:48 +0800 |
commit | b286f201a8424e00cc91d27adcf53a5249b8a3b9 (patch) | |
tree | 957fd969954de8ce451a76a34f1028d790605200 /youtube_dl/YoutubeDL.py | |
parent | bd93a12e852f34a1c9d8c86023972c6812dc80d5 (diff) |
[YoutubeDL] Do not override ie_key in url_transparent
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 2a3d6cd4a..50228bb32 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -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() |