Don't call paths.join() twice in a row here
This commit is contained in:
parent
1d14b187c2
commit
2e159a0cc6
|
@ -2793,10 +2793,7 @@ FTNMessageScanTossModule.prototype.startup = function (cb) {
|
||||||
['change', 'add', 'delete'].forEach(event => {
|
['change', 'add', 'delete'].forEach(event => {
|
||||||
watcher.on(event, (fileName, fileRoot) => {
|
watcher.on(event, (fileName, fileRoot) => {
|
||||||
const eventPath = paths.join(fileRoot, fileName);
|
const eventPath = paths.join(fileRoot, fileName);
|
||||||
if (
|
if (eventPath === importSchedule.watchFile) {
|
||||||
paths.join(fileRoot, fileName) ===
|
|
||||||
importSchedule.watchFile
|
|
||||||
) {
|
|
||||||
tryImportNow(makeImportMsg(event, eventPath), {
|
tryImportNow(makeImportMsg(event, eventPath), {
|
||||||
eventPath,
|
eventPath,
|
||||||
event,
|
event,
|
||||||
|
|
Loading…
Reference in New Issue