jurialmunkey / plugin.video.themoviedb.helper

GNU General Public License v3.0
203 stars 96 forks source link

[BUG] Some TMDb lists are a little weird #1265

Closed matke-84 closed 1 day ago

matke-84 commented 2 days ago

Describe the bug

Trending today list for Movies and TV Shows, Popular list for TV Shows gives completely different (weird) results than the tmdb site.

Steps To Reproduce

-

Debug log

-

Screenshots and Additional Info

-

Checklist

jurialmunkey commented 1 day ago

Region settings.

matke-84 commented 1 day ago

The region is set correctly as you can see. Example TMDb list - TV Shows - Popular.

11111111 44444 22222222 3333333333

jurialmunkey commented 1 day ago

Not sure what you want me to do about this? It is literally what the API returns

This request https://api.themoviedb.org/3/tv/popular?language=en-US&page=1

Produces this result https://gist.github.com/jurialmunkey/5d5e27d8d61dda05b85dbc2b8db1846e#file-popular-json

See also: https://www.themoviedb.org/talk/64d88edc37109700ac41768d

jurialmunkey commented 1 day ago

If you want more control, use discover.

jurialmunkey commented 1 day ago

e.g. this discover path will get you closer to what you're expecting by filtering out shows which aren't English language

plugin://plugin.video.themoviedb.helper/?info=discover&tmdb_type=tv&with_id=True&sort_by=popularity.desc&with_original_language=en

And this will help further refine it by filtering out some less desirable genres like Talk, News, Soap, and Reality

plugin://plugin.video.themoviedb.helper/?info=discover&tmdb_type=tv&with_id=True&sort_by=popularity.desc&without_genres=10762+%2F+10763+%2F+10764+%2F+10766+%2F+10767&with_original_language=en
matke-84 commented 1 day ago

Thanks for the explanation and help.