mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
Fixed paging not beeing applied
This commit is contained in:
parent
19e55f4309
commit
03e08412d7
@ -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…
x
Reference in New Issue
Block a user