Remove unnecessary Attachments

This commit is contained in:
2025-05-16 21:36:24 +02:00
parent 622198a09e
commit 6258e07f20
6 changed files with 1 additions and 9 deletions

View File

@ -36,7 +36,6 @@ public class DownloadAvailableChaptersJob : Job
protected override IEnumerable<Job> RunInternal(PgsqlContext context)
{
context.Attach(Manga);
context.Entry(Manga).Collection<Chapter>(m => m.Chapters).Load();
return Manga.Chapters.Select(chapter => new DownloadSingleChapterJob(chapter, this));
}