about summary refs log tree commit diff
path: root/youtube_dl/extractor/vshare.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2019-02-14 23:40:46 +0700
committerSergey M․ <dstftw@gmail.com>2019-02-14 23:43:16 +0700
commit794c1b6e02591b04da931fa59745bc47bfae7492 (patch)
treee1cd137d61149ef5e07a45e27184b1fb114971a2 /youtube_dl/extractor/vshare.py
parent7bee705d8f110f09d8e72b1c863ff197ccc1d4f1 (diff)
downloadyoutube-dl-794c1b6e02591b04da931fa59745bc47bfae7492.tar.gz
youtube-dl-794c1b6e02591b04da931fa59745bc47bfae7492.tar.xz
youtube-dl-794c1b6e02591b04da931fa59745bc47bfae7492.zip
[vshare] Pass Referer to download request (closes #19205, closes #19221)
Diffstat (limited to 'youtube_dl/extractor/vshare.py')
-rw-r--r--youtube_dl/extractor/vshare.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vshare.py b/youtube_dl/extractor/vshare.py
index e4ec77889..c631ac1fa 100644
--- a/youtube_dl/extractor/vshare.py
+++ b/youtube_dl/extractor/vshare.py
@@ -48,7 +48,7 @@ class VShareIE(InfoExtractor):
 
         webpage = self._download_webpage(
             'https://vshare.io/v/%s/width-650/height-430/1' % video_id,
-            video_id)
+            video_id, headers={'Referer': url})
 
         title = self._html_search_regex(
             r'<title>([^<]+)</title>', webpage, 'title')