Fixed main class

master
Stuart Boston 11 years ago
parent 4f32632e52
commit 998c19f46b

@ -1064,7 +1064,7 @@ public class TheMovieDbApi {
* @return
* @throws MovieDbException
*/
public String getMovieReviews(int movieId, Integer page, String language, String... appendToResponse) throws MovieDbException {
public TmdbResultsList<Review> getMovieReviews(int movieId, Integer page, String language, String... appendToResponse) throws MovieDbException {
return tmdbMovies.getMovieReviews(movieId, page, language, appendToResponse);
}

@ -40,8 +40,8 @@ Discover (Done)
/discover/movie Discover movies by different types of data like average rating, number of votes, genres and certifications.
/discover/tv Discover TV shows by different types of data like average rating, number of votes, genres, the network they aired on and air dates.
Find
*** /find/{id} The find method makes it easy to search for objects in our database by an external id.
Find (Done)
/find/{id} The find method makes it easy to search for objects in our database by an external id.
Genres (Done)
/genre/movie/list Get the list of movie genres.

Loading…
Cancel
Save