Increase number of posters fetched

This commit is contained in:
Lucas Verney 2020-12-14 20:48:51 +01:00
parent 0afc3f2c5b
commit 0610edbe0a
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ var app = new Vue({
},
methods: {
search() {
fetch(`https://apis.justwatch.com/content/titles/fr_FR/popular?language=fr&body={"page_size":5,"page":1,"query":"${this.title}","content_types":["show","movie"]}`)
fetch(`${JUSTWATCH_API_DOMAIN}/content/titles/fr_FR/popular?language=fr&body={"page_size":20,"page":1,"query":"${this.title}","content_types":["show","movie"]}`)
.then(response => response.json())
.then(response => {
this.error = null;