remove query admins from mailer code

This commit is contained in:
Girish Ramakrishnan
2019-03-10 16:05:27 -07:00
parent 19ae55ebd4
commit 6bdf2e38cc
4 changed files with 51 additions and 53 deletions

View File

@@ -204,7 +204,7 @@ function recreateJobs(tz) {
if (gJobs.digestEmail) gJobs.digestEmail.stop();
gJobs.digestEmail = new CronJob({
cronTime: '00 00 00 * * 3', // every wednesday
onTick: digest.send,
onTick: digest.send.bind(null, NOOP_CALLBACK),
start: true,
timeZone: tz
});