summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-12-08 21:16:14 +0600
committerSergey M․ <dstftw@gmail.com>2015-12-08 21:16:14 +0600
commitb46b65ed370340159e77bf875e99fb93133b6492 (patch)
tree5c66acb29ea2268f386c4017965bd1397ceddcc6
parent18e4088fad97de0d79e29e0a49a0df3ce719a441 (diff)
downloadyoutube-dl-b46b65ed370340159e77bf875e99fb93133b6492.tar.gz
youtube-dl-b46b65ed370340159e77bf875e99fb93133b6492.tar.xz
youtube-dl-b46b65ed370340159e77bf875e99fb93133b6492.zip
[nbc] Smuggle referer (Closes #7791)
-rw-r--r--youtube_dl/extractor/nbc.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/nbc.py b/youtube_dl/extractor/nbc.py
index e683d24c4..7de86a969 100644
--- a/youtube_dl/extractor/nbc.py
+++ b/youtube_dl/extractor/nbc.py
@@ -11,6 +11,7 @@ from ..utils import (
     ExtractorError,
     find_xpath_attr,
     lowercase_escape,
+    smuggle_url,
     unescapeHTML,
 )
 
@@ -67,7 +68,7 @@ class NBCIE(InfoExtractor):
             webpage, 'theplatform url').replace('_no_endcard', '').replace('\\/', '/')))
         if theplatform_url.startswith('//'):
             theplatform_url = 'http:' + theplatform_url
-        return self.url_result(theplatform_url)
+        return self.url_result(smuggle_url(theplatform_url, {'source_url': url}))
 
 
 class NBCSportsVPlayerIE(InfoExtractor):