fixing bug that caused plugin language files to not be parsed

This commit is contained in:
Julian Lam
2017-01-23 11:25:05 -05:00
parent fcec6fd41d
commit a7aaf8ea96

View File

@@ -28,7 +28,7 @@ function getTranslationTree(callback) {
});
// Filter out plugins with invalid paths
async.filter(paths, file.exists, function (paths) {
async.filter(paths, file.exists, function (err, paths) {
next(null, paths);
});
},