fix: avoid /Latest endpoint to improve performance

This commit is contained in:
Gabe Farrell 2025-11-12 18:06:50 -05:00
parent fdb3178f49
commit afe8454359
2 changed files with 8 additions and 4 deletions

View file

@ -698,6 +698,8 @@ class JellyService {
Future<Response<BaseItemDtoQueryResult>> usersUserIdItemsGet({
String? parentId,
List<ItemSortBy>? sortBy,
List<SortOrder>? sortOrder,
bool? recursive,
List<BaseItemKind>? includeItemTypes,
}) async {
@ -705,6 +707,8 @@ class JellyService {
parentId: parentId,
userId: account?.id,
recursive: recursive,
sortBy: sortBy,
sortOrder: sortOrder,
includeItemTypes: includeItemTypes,
);
}