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 390c0ba788
commit b2bb1a7c24

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);
});
},