1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Bump ITEMS_PER_REQUEST_LIMIT to 40 (getItems call)

This commit is contained in:
Merlin Danner 2023-04-19 02:43:47 +02:00
parent 3629e826df
commit 012c281615

View file

@ -6,7 +6,7 @@ interface GetItemsRequest {
Limit?: number;
}
const ITEMS_PER_REQUEST_LIMIT = 25;
const ITEMS_PER_REQUEST_LIMIT = 40;
function getItemsSplit(apiClient: ApiClient, userId: string, options: GetItemsRequest) {
const optionsTemplate = { ...options };