-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Genres #399
base: master
Are you sure you want to change the base?
Genres #399
Conversation
This pull request introduces 5 alerts when merging 74cae92 into 7c00e04 - view on LGTM.com new alerts:
|
Ok, unrelated Travis errors are solved now, but there are other errors specific to the movie skill that needs to be fixed before this can be merged. |
This pull request introduces 5 alerts when merging c285a7a into eed526e - view on LGTM.com new alerts:
|
This pull request introduces 5 alerts when merging 61e0053 into 67f5901 - view on LGTM.com new alerts:
|
This pull request introduces 3 alerts when merging b20732b into e98aaae - view on LGTM.com new alerts:
|
universe/org.themoviedb/index.js
Outdated
const movieObj = { | ||
id, | ||
description: result.overview, | ||
release_date: oneDate, | ||
rating_score: Number(result.vote_average), | ||
genres: result.genre_ids, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should map the genre IDs to an array of Entity objects containing the genre names as well, otherwise the agent won't be able to speak out the genre name.
No description provided.