fix: Email Notification was not being sent.

This commit is contained in:
Towfiq
2022-12-21 13:30:51 +06:00
parent e904afdd33
commit 0fdb43c0a5

View File

@@ -50,7 +50,7 @@ const generateCronTime = (interval) => {
cronTime = '0 0 0 * * *';
}
if (interval === 'daily_morning') {
cronTime = '0 0 0 3 * *';
cronTime = '0 0 3 * * *';
}
if (interval === 'weekly') {
cronTime = '0 0 0 */7 * *';