Uwe Trottmann

Results 68 comments of Uwe Trottmann

Will not change anything, ignoring plays causes other trouble (e.g. a regular watched episode might be shown again if released on the same day as a special, after marking the...

Thanks, I will once I make time. Happy to accept a pull request!

As written in the README I don't actively maintain this library any longer. E.g. TheTVDB has switched to a new API that this library does not support.

First of all thanks. Some remarks: - The API docs mention nothing about supporting IMDB IDs https://developers.themoviedb.org/3/movies/get-movie-details Where does the info come from that this is supported? - I'd rather...

I'd rather not support this. The docs also say to use `find` to look up external IDs. https://developers.themoviedb.org/3/getting-started/external-ids > i just worked on the MovieService, and on the first endpoints...

@urizev But you still would have to change all the service method return types, no? Like: ``` @GET("search/movie") Call movie(...); ``` has to be changed to: ``` @GET("search/movie") Observable movie(...);...

Thanks. Feel free to [submit a pull request](https://github.com/UweTrottmann/trakt-java/blob/main/CONTRIBUTING.md) to add it.

Thanks! This duplicates the methods already available from the Users service, no? E.g. you can just use `me` as username.