Browse Source

Fix movie search wrapper not returning the correct number of results

dev
David Ludwig 4 years ago
parent
commit
784c15f496
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      services/request/src/services/MovieSearch.ts

+ 1
- 1
services/request/src/services/MovieSearch.ts View File

@ -80,7 +80,7 @@ export default class MovieSearch extends InternalService<Application>
ticketId : ticketMap[movie.tmdbId] ?? null ticketId : ticketMap[movie.tmdbId] ?? null
}), }),
totalPages: movies.totalPages, totalPages: movies.totalPages,
totalResults: movies.totalPages
totalResults: movies.totalResults
}; };
} }
} }

Loading…
Cancel
Save