mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-06 08:45:53 +01:00
Fixed paging not beeing applied
This commit is contained in:
parent
19e55f4309
commit
03e08412d7
1 changed files with 1 additions and 0 deletions
|
|
@ -230,6 +230,7 @@ public sealed class BaseItemRepository(
|
|||
// dbQuery = dbQuery.Distinct();
|
||||
dbQuery = ApplyOrder(dbQuery, filter);
|
||||
dbQuery = ApplyGroupingFilter(dbQuery, filter);
|
||||
dbQuery = ApplyQueryPageing(dbQuery, filter);
|
||||
|
||||
return dbQuery.AsEnumerable().Where(e => e is not null).Select(w => DeserialiseBaseItem(w, filter.SkipDeserialization)).ToImmutableArray();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue