You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Was wondering if it would be possible to fix getGenres() not working on some of the movie list endpoints, example:
` List results = tmdbApi.getMovies().getNowPlayingMovies("en-US", page, "").getResults();
for (MovieDb movie : results ) {
MovieDb film = new MovieDb();
film.setGenres(movie.getGenres());
movieResults.add(film);
}
`
movie.getGenres() returns null here
Thanks :)
The text was updated successfully, but these errors were encountered:
I am in the process of updating the entire library, so this will be fixed when that update is released. When it is finished, I will be releasing an entirely new version (2.0.0) because there are many breaking changes, I doubt the current version (1.15.1) will be remotely similar to the new version because of how much their api has changed over the years.
So, within the next month or so, you can expect a new release where this will be implemented.
Hiya,
Great work on this project!
Was wondering if it would be possible to fix getGenres() not working on some of the movie list endpoints, example:
` List results = tmdbApi.getMovies().getNowPlayingMovies("en-US", page, "").getResults();
for (MovieDb movie : results ) {
MovieDb film = new MovieDb();
film.setGenres(movie.getGenres());
movieResults.add(film);
}
`
movie.getGenres() returns null here
Thanks :)
The text was updated successfully, but these errors were encountered: