Merge in changes from 0.0.7-alpha branch for watchFiles

This commit is contained in:
Bryan Ashby 2017-10-02 21:30:33 -06:00
commit c652fb65ea
2 changed files with 17 additions and 0 deletions

View file

@ -1698,6 +1698,16 @@ FTNMessageScanTossModule.prototype.startup = function(cb) {
}
});
});
//
// If the watch file already exists, kick off now
// https://github.com/NuSkooler/enigma-bbs/issues/122
//
fse.exists(importSchedule.watchFile, exists => {
if(exists) {
tryImportNow(`Performing import/toss due to @watch: ${importSchedule.watchFile} (initial exists)`);
}
});
}
}
}