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

Rename getItemsHelper.ts to getItems.ts

This commit is contained in:
Merlin Danner 2023-03-08 01:29:14 +01:00 committed by dann-merlin
parent e693724055
commit 1a069b49be
5 changed files with 8 additions and 8 deletions

View file

@ -12,7 +12,7 @@ import Screenfull from 'screenfull';
import ServerConnections from '../ServerConnections';
import alert from '../alert';
import { includesAny } from '../../utils/container.ts';
import { getItems } from '../../utils/jellyfin-apiclient/getItemsHelper.ts';
import { getItems } from '../../utils/jellyfin-apiclient/getItems.ts';
const UNLIMITED_ITEMS = -1;
@ -127,7 +127,7 @@ function getItemsForPlayback(serverId, query) {
query.EnableTotalRecordCount = false;
query.CollapseBoxSetItems = false;
// call getItems from getItemsHelper instead of apiClient.getItems()
// call getItems from jellyfin-apiclient/getItems.ts instead of apiClient.getItems()
// to split up into multiple requests if necessary (URL might get too long)
return getItems(apiClient, apiClient.getCurrentUserId(), query);
}