src/Api/CleanupJob.cs
+1
-1
diff --git a/src/Api/CleanupJob.cs b/src/Api/CleanupJob.cs
index bcc5ca6..170ea77 100644
@@ -32,6 +32,6 @@ public static class CleanupJobExtensions
public IServiceCollectionQuartzConfigurator AddCleanupJob() =>
quartz
.AddJob<CleanupJob>(CleanupJob.Key, options => options.StoreDurably())
.AddTrigger(options => options.ForJob(CleanupJob.Key).WithCronSchedule("H H * * * ?"));
.AddTrigger(options => options.ForJob(CleanupJob.Key).WithCronSchedule("0 0 * * * ?"));
}
}