Skip to content

Commit

Permalink
fix: Email notifcations now sent everyday at 3am
Browse files Browse the repository at this point in the history
  • Loading branch information
towfiqi committed Dec 8, 2022
1 parent a6af9d3 commit f000063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cron.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const generateCronTime = (interval) => {
cronTime = '0 0 0 * * *';
}
if (interval === 'daily_morning') {
cronTime = '0 0 0 7 * *';
cronTime = '0 0 0 3 * *';
}
if (interval === 'weekly') {
cronTime = '0 0 0 */7 * *';
Expand Down

0 comments on commit f000063

Please sign in to comment.