fix: every day without hour

This commit is contained in:
2026-08-02 09:04:15 +02:00
parent d8c7cc498d
commit eea6825ac7
2 changed files with 1 additions and 15 deletions
+1 -1
View File
@@ -128,7 +128,7 @@ export function getCron(
case CronType.ONE_TIME:
return ONE_TIME_VALUE;
case CronType.EVERY_DAY:
return `0 ${value.toFixed(0)} * * *`;
return `0 0 * * *`;
case CronType.EVERY_WEEK:
return `0 0 * * ${value.toFixed(0)}`;
case CronType.EVERY_MONTH: