Skip to content

Commit

Permalink
feat: make cron more frequent
Browse files Browse the repository at this point in the history
  • Loading branch information
sparky-raccoon committed Mar 16, 2024
1 parent 14150d6 commit cad09bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cron.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const initCronJob = async (client: Client) => {
};

checkAndPost();
schedule("0 */4 * * *", () => checkAndPost());
schedule("0 */1 * * *", () => checkAndPost());
};

export default initCronJob;

0 comments on commit cad09bf

Please sign in to comment.