jellyfin / jellyfin-apiclient-python

Python API Client for Jellyfin
GNU General Public License v3.0
94 stars 32 forks source link

No episodes are returned on get_recently_added #26

Closed zeroquinc closed 1 year ago

zeroquinc commented 1 year ago

Hello, thanks for making this python API!

I have a issue calling get_recently_added. I call it like this:

get_recently_added = client.jellyfin.get_recently_added(media="Episode", limit=20)

But somehow it only returns TV Shows which have the Type: Series

If I call Seasons or Audiobooks it shows fine.

get_recently_added = client.jellyfin.get_recently_added(media="Season", limit=20)

Is it possible to only return the latest added episodes instead of shows? Or am I doing something wrong?

Thanks in advance!

recently_added_episodes.json = https://pastebin.com/33CgBTnv recently_added_seasons.json = https://pastebin.com/U7PqKSnM