We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3f9fae commit a34a9e5Copy full SHA for a34a9e5
apps/ecash-herald/index.js
@@ -19,7 +19,9 @@ const { handleUtcMidnight } = require('./src/events');
19
20
// Cron job for daily summaries
21
const job = new cron.CronJob(
22
- '0 0 * * * *', // cronTime
+ // see https://www.npmjs.com/package/cron
23
+ // seconds[0-59] minutes[0-59] hours[0-23] day-of-month[1-31] month[1-12] day-of-week[0-7]
24
+ '0 0 0 * * *', // cronTime
25
() => handleUtcMidnight(chronik, telegramBot, dailyChannelId), // onTick
26
null, // onComplete
27
false, // start
0 commit comments