mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
handle limit -1 for jellyfin genres
This commit is contained in:
@@ -397,7 +397,7 @@ export const JellyfinController: InternalControllerEndpoint = {
|
||||
query: {
|
||||
EnableTotalRecordCount: true,
|
||||
Fields: 'ItemCounts',
|
||||
Limit: query.limit,
|
||||
Limit: query.limit === -1 ? undefined : query.limit,
|
||||
ParentId: getMusicFolderId(query.musicFolderId),
|
||||
Recursive: true,
|
||||
SearchTerm: query?.searchTerm,
|
||||
|
||||
Reference in New Issue
Block a user