[YoutubeDL] Do not override id, extractor and extractor_key in url_transparent
[youtube-dl] / youtube_dl / YoutubeDL.py
index 89c07be290eaad1b198e3acf089831884e24ad21..f94836d0600696d041243d1e12cbc90ee0889725 100755 (executable)
@@ -860,7 +860,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', 'ie_key'):
+            for f in ('_type', 'url', 'id', 'extractor', 'extractor_key', 'ie_key'):
                 if f in force_properties:
                     del force_properties[f]
             new_result = info.copy()