Merge pull request #23 from 67P/bugfix/mediawiki_cron_syntax

Fix mediawiki polling cron
This commit was merged in pull request #23.
This commit is contained in:
2018-09-09 15:36:25 +08:00
committed by GitHub

View File

@@ -171,6 +171,6 @@ module.exports = async function(robot, kredits) {
.then(() => updateTimestampForNextFetch());
}
cron.schedule('* 7 * * *', processWikiChangesSinceLastRun);
cron.schedule('0 7 * * *', processWikiChangesSinceLastRun);
};