我有一个 Discord.js 机器人没有发送预定消息

I have a Discord.js bot that is not sending a scheduled message

我有一个 Discord 机器人,计划在每年 7 月 1 日发送一条消息(以及其他一些东西)。然而,它并没有发送消息,而是发送了其他内容。提前致谢。

这是它不发送消息的特定行:

cron.schedule('*0 0 0 1 7 *', () => {
client.channels.cache.get('CHANNEL ID').send('Happy 1st of July!');

});

正确的 cronjob 是 0 0 1 7 *。 (“7 月第 1 天 00:00。”)