Added overview (description) from tmdb movie to movieObject.

This commit is contained in:
2017-06-03 13:07:49 +02:00
parent d05aa13c39
commit 907bc73a7f

View File

@@ -22,6 +22,7 @@ function convertTmdbToMovie(tmdbMovie) {
movie.poster = tmdbMovie.poster_path;
movie.background = tmdbMovie.backdrop_path;
movie.overview = tmdbMovie.overview;
return movie;
}