diff --git a/cron.js b/cron.js index a38ec083..883b457a 100644 --- a/cron.js +++ b/cron.js @@ -497,7 +497,7 @@ const processUser = function(number,rows){ var theCronInterval = null const setIntervalForCron = function(){ clearCronInterval() - theCronInterval = setTimeout(doCronJobs,parseFloat(config.cron.interval)*60000*60) + theCronInterval = setInterval(doCronJobs,parseFloat(config.cron.interval)*60000*60) } const clearCronInterval = function(){ clearInterval(theCronInterval)