Fixed AncestorIds and applied review comments

This commit is contained in:
JPVenson
2024-10-09 23:19:24 +00:00
parent eb601e944c
commit 2955f2f562
16 changed files with 3275 additions and 181 deletions

View File

@@ -34,7 +34,7 @@ public class PeopleRepository(IDbContextFactory<JellyfinDbContext> dbProvider) :
dbQuery = dbQuery.Take(filter.Limit);
}
return dbQuery.ToList().Select(Map).ToImmutableArray();
return dbQuery.AsEnumerable().Select(Map).ToImmutableArray();
}
/// <inheritdoc/>