aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-04-21 20:55:05 +0600
committerSergey M․ <dstftw@gmail.com>2015-04-21 20:55:05 +0600
commited553379dfd4d564f8335defc1067eeecd536f04 (patch)
treee3b069cbc12a5686514bfc51816423b84f4bd3cc
parent5c1e6f69c421c244139b1f4c6d2759dadfbc1abd (diff)
downloadyoutube-dl-ed553379dfd4d564f8335defc1067eeecd536f04.tar.xz
[youtube:ytsearch] Temporary workaround (#5483)
-rw-r--r--youtube_dl/extractor/youtube.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index 52909b0da..4ec39c589 100644
--- a/youtube_dl/extractor/youtube.py
+++ b/youtube_dl/extractor/youtube.py
@@ -1517,7 +1517,7 @@ class YoutubeSearchIE(SearchInfoExtractor):
while (PAGE_SIZE * pagenum) < limit:
result_url = self._API_URL % (
compat_urllib_parse.quote_plus(query.encode('utf-8')),
- (PAGE_SIZE * pagenum) + 1)
+ max((PAGE_SIZE * pagenum) + 1), 2)
data_json = self._download_webpage(
result_url, video_id='query "%s"' % query,
note='Downloading page %s' % (pagenum + 1),