Closed paolodelfino closed 1 year ago
Also happens on the API side: https://developer.themoviedb.org/reference/movie-details, so unfortunately that is an issue out of my hands
If you make a call to (for example)
https://api.themoviedb.org/3/movie/829280?api_key={api_key}
you can see
"belongs_to_collection": {
"id": 829314,
"name": "Enola Holmes Collection",
"poster_path": "/9QfsXZTS7gDJwkSmmBPlml3P8ca.jpg",
"backdrop_path": "/HScQCcEd3yucY3XYRCnkRzl7Gp.jpg"
},
which is not a null value, it could be null but not constrained as reported instead in the typescript declaration file.
Here, however there is an issue because in the tmdb developer api belongs_to_collection
is indicated to be a string which is actually wrong.
Could you please refer to the object
"belongs_to_collection": {
"id": 829314,
"name": "Enola Holmes Collection",
"poster_path": "/9QfsXZTS7gDJwkSmmBPlml3P8ca.jpg",
"backdrop_path": "/HScQCcEd3yucY3XYRCnkRzl7Gp.jpg"
},
for your package?
Aaaahh okay sorry i misunderstood, yep will do that later today after work!
when I get a movie details
the property "belongs_to_collection" is null