Fixes thtrue in #115

This commit is contained in:
Andrew Pamment 2017-06-22 12:38:57 +10:00
parent d92b8e6e2c
commit bb76939745
1 changed files with 2 additions and 2 deletions

View File

@ -293,9 +293,9 @@ function FTNMessageScanTossModule() {
async.detectSeries(EXT_SUFFIXES, (suffix, callback) => {
const checkFileName = fileName + suffix;
fs.stat(paths.join(basePath, checkFileName), err => {
callback((err && 'ENOENT' === err.code) ? true : false);
callback(null, (err && 'ENOENT' === err.code) ? true : false);
});
}, finalSuffix => {
}, (err, finalSuffix) => {
if(finalSuffix) {
cb(null, paths.join(basePath, fileName + finalSuffix));
} else {