mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-05-13 11:02:18 -04:00
UX Overhaul Part 2 (#3112)
Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
This commit is contained in:
@@ -59,6 +59,18 @@ public static class IncludesExtensions
|
||||
.Include(c => c.People);
|
||||
}
|
||||
|
||||
if (includes.HasFlag(ChapterIncludes.Genres))
|
||||
{
|
||||
queryable = queryable
|
||||
.Include(c => c.Genres);
|
||||
}
|
||||
|
||||
if (includes.HasFlag(ChapterIncludes.Tags))
|
||||
{
|
||||
queryable = queryable
|
||||
.Include(c => c.Tags);
|
||||
}
|
||||
|
||||
return queryable.AsSplitQuery();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user