SendNotificationsWorker, CleanupMangaCoversWorker, UpdateChaptersDownloadedWorker add optional interval parameter

This commit is contained in:
2025-07-03 20:12:07 +02:00
parent d6847d769e
commit 0ac4c23ac9
4 changed files with 7 additions and 8 deletions

View File

@ -354,9 +354,8 @@ public class MangaController(IServiceScope scope) : Controller
return NotFound(nameof(LibraryId));
MoveMangaLibraryWorker moveLibrary = new(manga, library, scope);
UpdateChaptersDownloadedWorker updateDownloadedFiles = new(manga, [moveLibrary]);
Tranga.AddWorkers([moveLibrary, updateDownloadedFiles]);
Tranga.AddWorkers([moveLibrary]);
return Accepted();
}