This commit is contained in:
Bryan Ashby 2022-08-07 11:49:52 -06:00
parent c1f5086db0
commit d13d90e223
No known key found for this signature in database
GPG Key ID: C2C1B501E4EFD994
1 changed files with 7 additions and 4 deletions

View File

@ -2801,10 +2801,13 @@ FTNMessageScanTossModule.prototype.startup = function (cb) {
// //
fse.exists(importSchedule.watchFile, exists => { fse.exists(importSchedule.watchFile, exists => {
if (exists) { if (exists) {
tryImportNow(makeImportMsg('exists', eventPath), { tryImportNow(
eventPath: importSchedule.watchFile, makeImportMsg('exists', importSchedule.watchFile),
event: 'exists', {
}); eventPath: importSchedule.watchFile,
event: 'exists',
}
);
} }
}); });
} }