mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-17 03:06:39 -07:00
fix: avoid /Latest endpoint to improve performance
This commit is contained in:
parent
fdb3178f49
commit
afe8454359
2 changed files with 8 additions and 4 deletions
|
|
@ -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,
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue