This commit is contained in:
Bryan Ashby
2022-08-07 11:49:52 -06:00
parent c1f5086db0
commit d13d90e223

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(
makeImportMsg('exists', importSchedule.watchFile),
{
eventPath: importSchedule.watchFile, eventPath: importSchedule.watchFile,
event: 'exists', event: 'exists',
}); }
);
} }
}); });
} }