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

Remove leftover debugging log in getItems

This commit is contained in:
Merlin Danner 2023-03-08 00:53:26 +01:00 committed by dann-merlin
parent baa4f0a29d
commit e693724055

View file

@ -15,7 +15,6 @@ function getItemsSplit(apiClient: ApiClient, userId: string, options: any) {
nextI = options.Limit;
}
const idsSlice = ids.slice(i, nextI);
console.log(idsSlice);
optionsTemplate.Ids = idsSlice.join(',');
results.push(apiClient.getItems(userId, optionsTemplate));
}