Fixed up updating issue data

This commit is contained in:
Joseph Milazzo 2025-04-15 15:46:10 -05:00
parent 31819d7723
commit 3f1212a84f
12 changed files with 3705 additions and 27 deletions

View file

@ -306,6 +306,8 @@ public class ChapterRepository : IChapterRepository
.Where(c => c.Volume.SeriesId == seriesId)
.OrderBy(c => c.SortOrder)
.Include(c => c.Volume)
.Include(c => c.People)
.ThenInclude(cp => cp.Person)
.ToListAsync();
}
}