fixing bug that caused plugin language files to not be parsed

v1.18.x
Julian Lam 8 years ago
parent fcec6fd41d
commit a7aaf8ea96

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

Loading…
Cancel
Save