diff --git a/scraper/scrapers/thepiratebay/thepiratebay_api.js b/scraper/scrapers/thepiratebay/thepiratebay_api.js index e331c14..5b38406 100644 --- a/scraper/scrapers/thepiratebay/thepiratebay_api.js +++ b/scraper/scrapers/thepiratebay/thepiratebay_api.js @@ -116,7 +116,7 @@ function browse(config = {}, retries = 2) { const category = config.category || 0; return Promises.first(proxyList - .map((proxyUrl) => singleRequest(`${proxyUrl}/browse/${category}/${page}`, config) + .map((proxyUrl) => singleRequest(`${proxyUrl}/browse/${category}/${page}/3`, config) .then((body) => parseBody(body)))) .catch((err) => browse(config, retries - 1)); }