diff --git a/src/Mangarr.Backend/Program.cs b/src/Mangarr.Backend/Program.cs index 6812b36..d496737 100644 --- a/src/Mangarr.Backend/Program.cs +++ b/src/Mangarr.Backend/Program.cs @@ -65,7 +65,7 @@ configure .WithIdentity("IndexMangaSchedulerJob") .ForJob(IndexMangaSchedulerJob.JobKey) - // .StartNow(); + .StartNow() .WithCronSchedule("0 0 * ? * * *"); }); @@ -74,7 +74,7 @@ configure .WithIdentity("DownloadChapterSchedulerJob") .ForJob(DownloadChapterSchedulerJob.JobKey) - // .StartNow(); + .StartNow() .WithCronSchedule("0 0/20 * ? * * *"); }); });