summaryrefslogblamecommitdiff
path: root/user/youtube-dl/tumblr.patch
blob: d34a79da666acf3f47940c7c8a9ec92b731c2d07 (plain) (tree)
















































                                                                                         
From a4a199b4dcc3e778621c4268a5dba615cf6f44ba Mon Sep 17 00:00:00 2001
From: rafinetiz <rafii.netizz@gmail.com>
Date: Fri, 18 Oct 2019 21:17:00 +0700
Subject: [PATCH 1/2] Fix tumblr permission denied #22755

---
 youtube_dl/extractor/tumblr.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/tumblr.py b/youtube_dl/extractor/tumblr.py
index edbb0aa6944b..71ced801859e 100644
--- a/youtube_dl/extractor/tumblr.py
+++ b/youtube_dl/extractor/tumblr.py
@@ -165,7 +165,8 @@ def _real_extract(self, url):
         if iframe_url is None:
             return self.url_result(redirect_url, 'Generic')
 
-        iframe = self._download_webpage(iframe_url, video_id, 'Downloading iframe page')
+        iframe = self._download_webpage(iframe_url, video_id, 'Downloading iframe page',
+            headers={'Referer': url})
 
         duration = None
         sources = []

From 43a19105d78c5c297d91936798d341f89919e9b1 Mon Sep 17 00:00:00 2001
From: rafinetiz <rafii.netizz@gmail.com>
Date: Fri, 18 Oct 2019 21:45:12 +0700
Subject: [PATCH 2/2] Fix coding style

---
 youtube_dl/extractor/tumblr.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/tumblr.py b/youtube_dl/extractor/tumblr.py
index 71ced801859e..61b0c1db65fe 100644
--- a/youtube_dl/extractor/tumblr.py
+++ b/youtube_dl/extractor/tumblr.py
@@ -165,7 +165,10 @@ def _real_extract(self, url):
         if iframe_url is None:
             return self.url_result(redirect_url, 'Generic')
 
-        iframe = self._download_webpage(iframe_url, video_id, 'Downloading iframe page',
+        iframe = self._download_webpage(
+            iframe_url,
+            video_id,
+            'Downloading iframe page',
             headers={'Referer': url})
 
         duration = None