Add UpdateMetadata Job to DownloadNewChapters

This commit is contained in:
glax 2023-11-02 15:20:34 +01:00
parent 5f9ffb8aad
commit 083ce238d8

View File

@ -43,6 +43,8 @@ public class DownloadNewChapters : Job
DownloadChapter downloadChapterJob = new(this, this.mangaConnector, chapter, parentJobId: this.id);
jobs.Add(downloadChapterJob);
}
UpdateMetadata updateMetadataJob = new(this, this.mangaConnector, this.manga, parentJobId: this.id);
jobs.Add(updateMetadataJob);
progressToken.Complete();
return jobs;
}