Fixed main class
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user