Jellyfin + Kodi v.21 (Omega) = Max 25 items in "In Progress TV Shows" - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Off Topic (https://forum.jellyfin.org/f-off-topic) +--- Forum: General Discussion (https://forum.jellyfin.org/f-general-discussion) +--- Thread: Jellyfin + Kodi v.21 (Omega) = Max 25 items in "In Progress TV Shows" (/t-jellyfin-kodi-v-21-omega-max-25-items-in-in-progress-tv-shows) |
Jellyfin + Kodi v.21 (Omega) = Max 25 items in "In Progress TV Shows" - Shadow_Effigy - 2024-04-18 The title kind of says it all, but for more details: In Kodi, if I go to: Addons --> Jellyfin --> TV Shows --> In Progress TV Shows The list maxes out at 25 entries, which is currently "Mi". Anything that comes after that is effectively cut off from the list. Is this by design? Can I change the value somewhere? Is this a bug? Any input would be greatly appreciated. Thanks. RE: Jellyfin + Kodi v.21 (Omega) = Max 25 items in "In Progress TV Shows" - mcarlton00 - 2024-04-18 Without doing any real testing of my own, it looks like that might just be the default number of items we're retrieving from the server. That menu item should be hitting this code block: https://github.com/jellyfin/jellyfin-kodi/blob/master/jellyfin_kodi/entrypoint/default.py#L313-L314 Which then looking at the definition of that function: https://github.com/jellyfin/jellyfin-kodi/blob/master/jellyfin_kodi/entrypoint/default.py#L927-L960 So the third argument to that function is the limit of how many items the client is requesting, and we're calling it with None . So unless something weird is going on, it doesn't look like that's a client error and just the default value of how many items the server returns. I suppose if you want to change it you just have to change that None on line 314 to a higher number and see if it has an effect, but I don't believe that's exposed anywhere in the UI so you'd have to edit the addon code directly on your playback device.
|