2024-04-18, 11:02 PM
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-kod...#L313-L314
Which then looking at the definition of that function:
https://github.com/jellyfin/jellyfin-kod...#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
That menu item should be hitting this code block:
https://github.com/jellyfin/jellyfin-kod...#L313-L314
Which then looking at the definition of that function:
https://github.com/jellyfin/jellyfin-kod...#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.