Skip to content

Commit

Permalink
Drop pageSize to 20 per change in Netflix API
Browse files Browse the repository at this point in the history
as noticed 6/20/18 Netflix will only return 2 results per page, regardless of asking for more.
  • Loading branch information
Excommunicated authored Jun 20, 2018
1 parent e1faacd commit 49e93aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/inject.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ const downloadHistory = async (event) => {

/* We set the records amount to infinity for now. Once the API sends back
less than pageSize results, we stop crawling. */
const pageSize = 100
const pageSize = 20
const pagesToLoad = Infinity

/* Download each page and append the results in to one array.
Expand Down

0 comments on commit 49e93aa

Please sign in to comment.