mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-10 01:38:49 +01:00
paging progress
This commit is contained in:
@@ -198,6 +198,8 @@ namespace MediaBrowser.Api.UserLibrary
|
||||
|
||||
items = items.AsParallel();
|
||||
|
||||
items = ApplyAdditionalFilters(request, items);
|
||||
|
||||
// Apply filters
|
||||
// Run them starting with the ones that are likely to reduce the list the most
|
||||
foreach (var filter in GetFilters(request).OrderByDescending(f => (int)f))
|
||||
@@ -205,8 +207,6 @@ namespace MediaBrowser.Api.UserLibrary
|
||||
items = ApplyFilter(items, filter, user);
|
||||
}
|
||||
|
||||
items = ApplyAdditionalFilters(request, items);
|
||||
|
||||
items = items.AsEnumerable();
|
||||
|
||||
items = ApplySearchTerm(request, items);
|
||||
|
||||
Reference in New Issue
Block a user