From e05fef18a09749fdf3e7128b828d5debf82f920d Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Mon, 29 Sep 2025 16:26:01 +0200 Subject: [PATCH] Only check subscription once a day again --- src/cron.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/cron.js b/src/cron.js index a864aa34e..d6e2f65f6 100644 --- a/src/cron.js +++ b/src/cron.js @@ -195,8 +195,7 @@ async function startJobs() { }); gJobs.subscriptionChecker = CronJob.from({ - // cronTime: `00 ${minute} ${hour} * * *`, // once a day based on seed to randomize - cronTime: `*/30 * * * * *`, // once a day based on seed to randomize + cronTime: `00 ${minute} ${hour} * * *`, // once a day based on seed to randomize onTick: async () => await safe(appstore.checkSubscription(), { debug }), start: true });