jellyfin / TMDbLib

C#.Net library for TheMovieDB
MIT License
357 stars 135 forks source link

Missing original_language /movie/{id} #64

Closed joebob49 closed 9 years ago

joebob49 commented 9 years ago

IMDB's API get results have it as shown in JSON as:

"imdb_id": "tt0137523", "original_language": "en", "original_title": "Fight Club"

Any change it can be added to the wrapper available from Nuget. I don't code in C or I'd have a go myself. I'm a bit old school and code in VB/VB.net. I looked at your source movie objects and see not reference to "original_language". Did I miss something? thx Joe

LordMike commented 9 years ago

You seem to be correct. Looking through the Apiary docs I can see the extra field you mention (language). It should be as simple as adding them to the Movie object.

LordMike commented 9 years ago

I found we missed another field "Video", albeit I have no idea what it means. It's been committed. I don't know then the Nuget package will be updated.

Thanks for reporting @joebob49